Record Class AbstractDisableConditionsEvaluator.DefinitionAndValue
java.lang.Object
java.lang.Record
org.ametys.runtime.model.disableconditions.AbstractDisableConditionsEvaluator.DefinitionAndValue
- Record Components:
definition
-ElementDefinition
corresponding to the valuevalue
- the value
- Enclosing class:
- AbstractDisableConditionsEvaluator<T>
protected static record AbstractDisableConditionsEvaluator.DefinitionAndValue(ElementDefinition definition, Object value)
extends Record
Definition and value corresponding to a
DisableCondition
-
Constructor Summary
ModifierConstructorDescriptionprotected
DefinitionAndValue
(ElementDefinition definition, Object value) Creates an instance of aDefinitionAndValue
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedefinition
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Constructor Details
-
DefinitionAndValue
Creates an instance of aDefinitionAndValue
record class.- Parameters:
definition
- the value for thedefinition
record componentvalue
- the value for thevalue
record component
-
-
Method Details
-
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
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)
. -
definition
Returns the value of thedefinition
record component.- Returns:
- the value of the
definition
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-