Package org.codehaus.groovy.ast.expr
Class ConstantExpression
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.expr.Expression
org.codehaus.groovy.ast.expr.ConstantExpression
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>
,NodeMetaDataHandler
- Direct Known Subclasses:
AnnotationConstantExpression
Represents a constant expression such as null, true, false.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final ConstantExpression
static final ConstantExpression
static final ConstantExpression
static final ConstantExpression
static final ConstantExpression
static final ConstantExpression
static final ConstantExpression
static final ConstantExpression
Fields inherited from class org.codehaus.groovy.ast.expr.Expression
EMPTY_ARRAY
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT
-
Constructor Summary
ConstructorDescriptionConstantExpression
(Object value) ConstantExpression
(Object value, boolean keepPrimitive) -
Method Summary
Modifier and TypeMethodDescriptiongetText()
getValue()
boolean
boolean
boolean
boolean
void
setConstantName
(String constantName) toString()
transformExpression
(ExpressionTransformer transformer) Return a copy of the expression calling the transformer on any nested expressionsvoid
visit
(GroovyCodeVisitor visitor) Methods inherited from class org.codehaus.groovy.ast.expr.Expression
getType, setType, transformExpressions, transformExpressions
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
Field Details
-
NULL
-
TRUE
-
FALSE
-
EMPTY_STRING
-
PRIM_TRUE
-
PRIM_FALSE
-
VOID
-
EMPTY_EXPRESSION
-
-
Constructor Details
-
ConstantExpression
-
ConstantExpression
-
-
Method Details
-
toString
-
visit
-
transformExpression
Description copied from class:Expression
Return a copy of the expression calling the transformer on any nested expressions- Specified by:
transformExpression
in classExpression
-
getValue
- Returns:
- the value of this constant expression
-
getText
-
getConstantName
-
setConstantName
-
isNullExpression
public boolean isNullExpression() -
isTrueExpression
public boolean isTrueExpression() -
isFalseExpression
public boolean isFalseExpression() -
isEmptyStringExpression
public boolean isEmptyStringExpression()
-