public class RangeExpression extends Expression
Represents a range expression such as for iterating. E.g.:
for i in 0..10 {...}
 
          | Fields inherited from class | Fields | 
|---|---|
| class Expression | EMPTY_ARRAY | 
| Constructor and description | 
|---|
| RangeExpression(Expression from, Expression to, boolean inclusive) | 
| RangeExpression(Expression from, Expression to, boolean exclusiveLeft, boolean exclusiveRight) | 
| Type Params | Return Type | Name and description | 
|---|---|---|
|  | public Expression | getFrom() | 
|  | public String | getText() | 
|  | public Expression | getTo() | 
|  | public boolean | isExclusiveLeft() | 
|  | public boolean | isExclusiveRight() | 
|  | public boolean | isInclusive() | 
|  | public Expression | transformExpression(ExpressionTransformer transformer) | 
|  | public void | visit(GroovyCodeVisitor visitor) | 
| Methods inherited from class | Name | 
|---|---|
| class Expression | getType, setType, transformExpression, transformExpressions, transformExpressions | 
| class AnnotatedNode | addAnnotation, addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic | 
| class ASTNode | copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit | 
Copyright © 2003-2025 The Apache Software Foundation. All rights reserved.