Record Class Cfg.Terminal<T>
java.lang.Object
java.lang.Record
io.jenetics.ext.grammar.Cfg.Terminal<T>
- Type Parameters:
T- the terminal symbol value type
- All Implemented Interfaces:
Cfg.Annotatable<T>, Cfg.Element<T>, Cfg.Symbol<T>
public static record Cfg.Terminal<T>(String name, T value, Object annotation)
extends Record
implements Cfg.Symbol<T>
Represents a terminal symbols of the grammar (
T).- Since:
- 7.1
- Version:
- 8.2
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotationrecord component.Create a new copy of the CFG element, with the givenannotation.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.static Cfg.Terminal<String> Return a new terminal symbol where the name of the symbol is equal to its value.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
Terminal
-
Terminal
-
-
Method Details
-
at
Description copied from interface:Cfg.AnnotatableCreate a new copy of the CFG element, with the givenannotation.- Specified by:
atin interfaceCfg.Annotatable<T>- Specified by:
atin interfaceCfg.Symbol<T>- Parameters:
annotation- the annotation of the newly created element, may benull- Returns:
- a copy of the element with the given
annotation
-
of
Return a new terminal symbol where the name of the symbol is equal to its value.- Parameters:
name- the name (and value) of the terminal symbol- Returns:
- a new terminal symbol with the given
name - Throws:
IllegalArgumentException- if the given terminalnameis empty
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
name
Returns the value of thenamerecord component.- Specified by:
namein interfaceCfg.Symbol<T>- Returns:
- the value of the
namerecord component
-
value
-
annotation
Returns the value of theannotationrecord component.- Specified by:
annotationin interfaceCfg.Annotatable<T>- Returns:
- the value of the
annotationrecord component
-