Record Class ELNode.FloatingPointLiteral
java.lang.Object
java.lang.Record
io.micronaut.el.parser.ast.ELNode.FloatingPointLiteral
- Record Components:
image- The literal as it appears in the expressionvalue- The value of the literal, aDoubleunless it does not fit in one, then aBigDecimal, computed once when the expression is parsed
- All Implemented Interfaces:
ELNode
- Enclosing interface:
ELNode
-
Nested Class Summary
Nested classes/interfaces inherited from interface ELNode
ELNode.Assign, ELNode.Binary, ELNode.BooleanLiteral, ELNode.Call, ELNode.Composite, ELNode.Eval, ELNode.FloatingPointLiteral, ELNode.Function, ELNode.Identifier, ELNode.IntegerLiteral, ELNode.Kind, ELNode.Lambda, ELNode.ListData, ELNode.LiteralText, ELNode.MapData, ELNode.Method, ELNode.NullLiteral, ELNode.Property, ELNode.Semicolon, ELNode.SetData, ELNode.StringLiteral, ELNode.Ternary, ELNode.Unary -
Constructor Summary
ConstructorsConstructorDescriptionFloatingPointLiteral(String image) FloatingPointLiteral(String image, Number value) Creates an instance of aFloatingPointLiteralrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.image()Returns the value of theimagerecord component.kind()final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
FloatingPointLiteral
- Parameters:
image- The literal as it appears in the expression
-
FloatingPointLiteral
-
-
Method Details
-
kind
-
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). -
image
-
value
-