Package ch.rswk.meta.engine
Record Class MetaValidator.ValidationResult
java.lang.Object
java.lang.Record
ch.rswk.meta.engine.MetaValidator.ValidationResult
- Enclosing class:
MetaValidator
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionValidationResult(boolean valid, @Nullable String message) Creates an instance of aValidationResultrecord 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.@Nullable Stringmessage()Returns the value of themessagerecord component.final StringtoString()Returns a string representation of this record class.booleanvalid()Returns the value of thevalidrecord component.
-
Field Details
-
valid
private final boolean validThe field for thevalidrecord component. -
message
The field for themessagerecord component.
-
-
Constructor Details
-
ValidationResult
Creates an instance of aValidationResultrecord class.- Parameters:
valid- the value for thevalidrecord componentmessage- the value for themessagerecord component
-
-
Method Details
-
toString
-
hashCode
-
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 '=='. -
valid
public boolean valid()Returns the value of thevalidrecord component.- Returns:
- the value of the
validrecord component
-
message
Returns the value of themessagerecord component.- Returns:
- the value of the
messagerecord component
-