Module org.elasticsearch.server
Record Class NodesRemovalPrevalidation.Result
java.lang.Object
java.lang.Record
org.elasticsearch.action.admin.cluster.node.shutdown.NodesRemovalPrevalidation.Result
- Record Components:
reason- is nullable only for BWC between 8.6 and 8.7. In a fully-upgraded 8.7, it should always be non-null.
- All Implemented Interfaces:
Writeable,ToXContent,ToXContentObject
- Enclosing class:
NodesRemovalPrevalidation
public static record NodesRemovalPrevalidation.Result(boolean isSafe, NodesRemovalPrevalidation.Reason reason, String message)
extends Record
implements ToXContentObject, Writeable
The prevalidation result of a node.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY, EMPTY_PARAMS -
Constructor Summary
ConstructorsConstructorDescriptionResult(boolean isSafe, NodesRemovalPrevalidation.Reason reason, String message) Creates an instance of aResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.fromXContent(XContentParser parser) final inthashCode()Returns a hash code value for this object.booleanisSafe()Returns the value of theisSaferecord component.message()Returns the value of themessagerecord component.readFrom(StreamInput in) reason()Returns the value of thereasonrecord component.final StringtoString()Returns a string representation of this record class.toXContent(XContentBuilder builder, ToXContent.Params params) voidwriteTo(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragment
-
Constructor Details
-
Result
Creates an instance of aResultrecord class.- Parameters:
isSafe- the value for theisSaferecord componentreason- the value for thereasonrecord componentmessage- the value for themessagerecord component
-
-
Method Details
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
readFrom
- Throws:
IOException
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
fromXContent
public static NodesRemovalPrevalidation.Result fromXContent(XContentParser parser) throws IOException - Throws:
IOException
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
isSafe
public boolean isSafe()Returns the value of theisSaferecord component.- Returns:
- the value of the
isSaferecord component
-
reason
Returns the value of thereasonrecord component.- Returns:
- the value of the
reasonrecord component
-
message
Returns the value of themessagerecord component.- Returns:
- the value of the
messagerecord component
-