Record Class LiteralProcessingDetails
java.lang.Object
java.lang.Record
org.ek9lang.compiler.phase7.support.LiteralProcessingDetails
-
Constructor Summary
ConstructorsConstructorDescriptionLiteralProcessingDetails
(ISymbol literalSymbol, String literalResult, String scopeId) Creates an instance of aLiteralProcessingDetails
record class. -
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.Returns the value of theliteralResult
record component.Returns the value of theliteralSymbol
record component.scopeId()
Returns the value of thescopeId
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
LiteralProcessingDetails
Creates an instance of aLiteralProcessingDetails
record class.- Parameters:
literalSymbol
- the value for theliteralSymbol
record componentliteralResult
- the value for theliteralResult
record componentscopeId
- the value for thescopeId
record 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)
. -
literalSymbol
Returns the value of theliteralSymbol
record component.- Returns:
- the value of the
literalSymbol
record component
-
literalResult
Returns the value of theliteralResult
record component.- Returns:
- the value of the
literalResult
record component
-
scopeId
Returns the value of thescopeId
record component.- Returns:
- the value of the
scopeId
record component
-