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
-
- Direct Known Subclasses:
AnnotationConstantExpression
public class ConstantExpression extends Expression
Represents a constant expression such as null, true, false
-
-
Field Summary
Fields Modifier and Type Field Description static ConstantExpression
EMPTY_EXPRESSION
static ConstantExpression
EMPTY_STRING
static ConstantExpression
FALSE
static ConstantExpression
NULL
static ConstantExpression
PRIM_FALSE
static ConstantExpression
PRIM_TRUE
static ConstantExpression
TRUE
static ConstantExpression
VOID
-
Constructor Summary
Constructors Constructor Description ConstantExpression(Object value)
ConstantExpression(Object value, boolean keepPrimitive)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getConstantName()
String
getText()
Object
getValue()
boolean
isEmptyStringExpression()
boolean
isFalseExpression()
boolean
isNullExpression()
boolean
isTrueExpression()
void
setConstantName(String constantName)
String
toString()
Expression
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, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
-
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, equals, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getNodeMetaData, getNodeMetaData, hashCode, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition
-
-
-
-
Field Detail
-
NULL
public static final ConstantExpression NULL
-
TRUE
public static final ConstantExpression TRUE
-
FALSE
public static final ConstantExpression FALSE
-
EMPTY_STRING
public static final ConstantExpression EMPTY_STRING
-
PRIM_TRUE
public static final ConstantExpression PRIM_TRUE
-
PRIM_FALSE
public static final ConstantExpression PRIM_FALSE
-
VOID
public static final ConstantExpression VOID
-
EMPTY_EXPRESSION
public static final ConstantExpression EMPTY_EXPRESSION
-
-
Method Detail
-
visit
public void visit(GroovyCodeVisitor visitor)
-
transformExpression
public Expression transformExpression(ExpressionTransformer transformer)
Description copied from class:Expression
Return a copy of the expression calling the transformer on any nested expressions- Specified by:
transformExpression
in classExpression
-
getValue
public Object getValue()
- Returns:
- the value of this constant expression
-
getConstantName
public String getConstantName()
-
setConstantName
public void setConstantName(String constantName)
-
isNullExpression
public boolean isNullExpression()
-
isTrueExpression
public boolean isTrueExpression()
-
isFalseExpression
public boolean isFalseExpression()
-
isEmptyStringExpression
public boolean isEmptyStringExpression()
-
-