Record Class ValidationResults.ValidationResult
java.lang.Object
java.lang.Record
com.hypixel.hytale.codec.validation.ValidationResults.ValidationResult
- Enclosing class:
ValidationResults
public static record ValidationResults.ValidationResult(ValidationResults.Result result, String reason)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final StringThe field for thereasonrecord component.private final ValidationResults.ResultThe field for theresultrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionValidationResult(ValidationResults.Result result, String reason) Creates an instance of aValidationResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.reason()Returns the value of thereasonrecord component.result()Returns the value of theresultrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
result
The field for theresultrecord component. -
reason
The field for thereasonrecord component.
-
-
Constructor Details
-
ValidationResult
Creates an instance of aValidationResultrecord class.- Parameters:
result- the value for theresultrecord componentreason- the value for thereasonrecord component
-
-
Method Details
-
appendResult
-
fail
-
warn
-
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). -
result
Returns the value of theresultrecord component.- Returns:
- the value of the
resultrecord component
-
reason
Returns the value of thereasonrecord component.- Returns:
- the value of the
reasonrecord component
-