Module org.elasticsearch.server
Record Class WriteLoadConstraintMonitor.NodeIdName
java.lang.Object
java.lang.Record
org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor.NodeIdName
- Enclosing class:
WriteLoadConstraintMonitor
-
Constructor Summary
ConstructorsConstructorDescriptionNodeIdName(String nodeId, String nodeName) Creates an instance of aNodeIdNamerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.nodeId()Returns the value of thenodeIdrecord component.nodeIdName(DiscoveryNode node) nodeName()Returns the value of thenodeNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
NodeIdName
Creates an instance of aNodeIdNamerecord class.- Parameters:
nodeId- the value for thenodeIdrecord componentnodeName- the value for thenodeNamerecord component
-
-
Method Details
-
nodeIdName
-
shortDescription
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
nodeId
Returns the value of thenodeIdrecord component.- Returns:
- the value of the
nodeIdrecord component
-
nodeName
Returns the value of thenodeNamerecord component.- Returns:
- the value of the
nodeNamerecord component
-