Package org.codehaus.groovy.ast.expr
Class CastExpression
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.expr.Expression
org.codehaus.groovy.ast.expr.CastExpression
Represents a type cast expression
- Author:
- James Strachan
-
Constructor Summary
ConstructorsConstructorDescriptionCastExpression(ClassNode type, Expression expression) CastExpression(ClassNode type, Expression expression, boolean ignoreAutoboxing) -
Method Summary
Modifier and TypeMethodDescriptionstatic CastExpressionasExpression(ClassNode type, Expression expression) getText()booleanisCoerce()booleanbooleanisStrict()If strict mode is true, then when the compiler generates a cast, it will disable Groovy casts and rely on a strict cast (CHECKCAST)voidsetCoerce(boolean coerce) voidsetStrict(boolean strict) If strict mode is true, then when the compiler generates a cast, it will disable Groovy casts and rely on a strict cast (CHECKCAST)voidtoString()transformExpression(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, transformExpressions, transformExpressionsMethods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSyntheticMethods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition
-
Constructor Details
-
CastExpression
-
CastExpression
-
-
Method Details
-
asExpression
-
isIgnoringAutoboxing
public boolean isIgnoringAutoboxing() -
isCoerce
public boolean isCoerce() -
setCoerce
public void setCoerce(boolean coerce) -
isStrict
public boolean isStrict()If strict mode is true, then when the compiler generates a cast, it will disable Groovy casts and rely on a strict cast (CHECKCAST)- Returns:
- true if strict mode is enable
-
setStrict
public void setStrict(boolean strict) If strict mode is true, then when the compiler generates a cast, it will disable Groovy casts and rely on a strict cast (CHECKCAST)- Parameters:
strict- strict mode
-
toString
-
visit
-
transformExpression
Description copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Specified by:
transformExpressionin classExpression
-
getText
-
getExpression
-
setType
- Overrides:
setTypein classExpression
-