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 aValidationResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@Nullable String
message()
Returns the value of themessage
record component.final String
toString()
Returns a string representation of this record class.boolean
valid()
Returns the value of thevalid
record component.
-
Field Details
-
valid
private final boolean validThe field for thevalid
record component. -
message
The field for themessage
record component.
-
-
Constructor Details
-
ValidationResult
Creates an instance of aValidationResult
record class.- Parameters:
valid
- the value for thevalid
record componentmessage
- the value for themessage
record 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 thevalid
record component.- Returns:
- the value of the
valid
record component
-
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-