Package com.sap.cds.ql.cqn
Interface CqnNumericLiteral<N extends Number>
- All Superinterfaces:
CqnLiteral<N>
,CqnToken
,CqnValue
,JSONizable
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
accept
(CqnVisitor visitor) Traverses the expression tree represented by this token with a givenvisitor
.default boolean
Returnstrue
if this is aCqnNumericLiteral
.value()
Returns the literal value.Methods inherited from interface com.sap.cds.ql.cqn.CqnLiteral
asBoolean, asLiteral, asNumber, asString, asStructured, asTemporal, asVector, isBoolean, isConstant, isLiteral, isString, isStructured, isTemporal, isVector, ofLiteral
Methods inherited from interface com.sap.cds.ql.cqn.CqnValue
as, asExpression, asFunction, asList, asNullValue, asParameter, asPlain, asRef, isExpression, isFunction, isList, isNullValue, isParameter, isPlain, isRef, ofRef, type
Methods inherited from interface com.sap.cds.JSONizable
toJson
-
Method Details
-
value
N value()Description copied from interface:CqnLiteral
Returns the literal value.- Specified by:
value
in interfaceCqnLiteral<N extends Number>
- Returns:
- the literal value
-
accept
Description copied from interface:CqnToken
Traverses the expression tree represented by this token with a givenvisitor
. The traversal order is depth-first. If this token has child nodes they are traversed first by dispatching the visitor to the children'saccept
methods. Afterwards this token is passed to the visitor'svisit
method specific for this token's type.- Specified by:
accept
in interfaceCqnToken
- Parameters:
visitor
- theCqnVisitor
-
isNumeric
default boolean isNumeric()Description copied from interface:CqnLiteral
Returnstrue
if this is aCqnNumericLiteral
.- Specified by:
isNumeric
in interfaceCqnLiteral<N extends Number>
- Returns:
true
if this is a numeric literal, otherwisefalse
-