java.lang.Object
java.lang.Record
io.jenetics.ext.rewriting.TreePattern.Val<V>
- Type Parameters:
V
- the node value type- Record Components:
value
- the underlying pattern value
- All Implemented Interfaces:
TreePattern.Decl<V>
,Serializable
- Enclosing class:
- TreePattern<V>
public static record TreePattern.Val<V>(V value)
extends Record
implements TreePattern.Decl<V>, Serializable
This class represents a constant pattern value, which can be part of a
whole subtree.
- See Also:
-
Constructor Summary
-
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.<B> TreePattern.Val<B>
Returns a newTreePattern.Decl
object with the mapped typeB
.toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Constructor Details
-
Val
Creates an instance of aVal
record class.- Parameters:
value
- the value for thevalue
record component
-
-
Method Details
-
map
Description copied from interface:TreePattern.Decl
Returns a newTreePattern.Decl
object with the mapped typeB
.- Specified by:
map
in interfaceTreePattern.Decl<V>
- Type Parameters:
B
- the mapped type- Parameters:
mapper
- the mapping function- Returns:
- the mapped declaration
-
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)
. -
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-