Record Class Token<EmitTokenType>
java.lang.Object
java.lang.Record
us.irdev.bedrock.bag.scanner.Token<EmitTokenType>
-
Constructor Summary
ConstructorsConstructorDescriptionToken(EmitTokenType emitToken, String value) Creates an instance of aTokenrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theemitTokenrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.toString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
Token
Creates an instance of aTokenrecord class.- Parameters:
emitToken- the value for theemitTokenrecord componentvalue- the value for thevaluerecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
emitToken
Returns the value of theemitTokenrecord component.- Returns:
- the value of the
emitTokenrecord component
-
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-