java.lang.Object
java.lang.Record
io.jenetics.ext.grammar.Cfg.Expression<T>
- Type Parameters:
T
- the terminal symbol value type
- All Implemented Interfaces:
Cfg.Annotatable<T>
,Cfg.Element<T>
public static record Cfg.Expression<T>(List<Cfg.Symbol<T>> symbols, Object annotation)
extends Record
implements Cfg.Element<T>
Represents one expression (list of alternative symbols) a
production rule consists of.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
Builder class for building rule expressions. -
Constructor Summary
ConstructorsConstructorDescriptionExpression
(List<Cfg.Symbol<T>> symbols) Expression
(List<Cfg.Symbol<T>> symbols, Object annotation) Creates an instance of aExpression
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotation
record component.Create a new copy of the CFG element, with the givenannotation
.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.List
<Cfg.Symbol<T>> symbols()
Returns the value of thesymbols
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Expression
Creates an instance of aExpression
record class.- Parameters:
symbols
- the value for thesymbols
record componentannotation
- the value for theannotation
record component
-
Expression
-
-
Method Details
-
at
Description copied from interface:Cfg.Annotatable
Create a new copy of the CFG element, with the givenannotation
.- Specified by:
at
in interfaceCfg.Annotatable<T>
- Parameters:
annotation
- the annotation of the newly created element, may benull
- Returns:
- a copy of the element with the given
annotation
-
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)
. -
symbols
Returns the value of thesymbols
record component.- Returns:
- the value of the
symbols
record component
-
annotation
Returns the value of theannotation
record component.- Specified by:
annotation
in interfaceCfg.Annotatable<T>
- Returns:
- the value of the
annotation
record component
-