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
public class ConstantExpression extends Expression
Represents a constant expression such as null, true, false. 
- 
- 
Field Summary
Fields Modifier and Type Field Description static ConstantExpressionEMPTY_EXPRESSIONstatic ConstantExpressionEMPTY_STRINGstatic ConstantExpressionFALSEstatic ConstantExpressionNULLstatic ConstantExpressionPRIM_FALSEstatic ConstantExpressionPRIM_TRUEstatic ConstantExpressionTRUEstatic ConstantExpressionVOID- 
Fields inherited from class org.codehaus.groovy.ast.expr.Expression
EMPTY_ARRAY 
- 
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT 
 - 
 
- 
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 StringgetConstantName()StringgetText()ObjectgetValue()booleanisEmptyStringExpression()booleanisFalseExpression()booleanisNullExpression()booleanisTrueExpression()voidsetConstantName(String constantName)StringtoString()ExpressiontransformExpression(ExpressionTransformer transformer)Return a copy of the expression calling the transformer on any nested expressionsvoidvisit(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, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic 
- 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, hashCode, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait 
- 
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData 
 - 
 
 - 
 
- 
- 
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:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Specified by:
 transformExpressionin 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()
 
 - 
 
 -