|
Groovy 1.7.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
java.lang.Iterablegroovy.lang.Range
java.util.Collection
interface Range extends List
A Range represents the list of all items obtained by starting from a
from
value and calling next()
successively
until you reach the to
value. For a reverse range,
the list is obtained by starting at the to
value and
successively calling previous()
until the from
value is reached.
Method Summary | |
---|---|
boolean
|
containsWithinBounds(Object o)
Indicates whether an object is greater than or equal to the |
Comparable
|
getFrom()
The lower value in the range. |
Comparable
|
getTo()
The upper value in the range. |
String
|
inspect()
to create the { |
boolean
|
isReverse()
Indicates whether this is a reverse range which iterates backwards starting from the to value and ending on the from value |
void
|
step(int step, Closure closure)
Steps through the range, calling a closure for each number. |
List
|
step(int step)
Forms a list by stepping through the range by the indicated interval. |
Methods inherited from interface List | |
---|---|
add, add, get, hashCode, indexOf, clear, equals, contains, isEmpty, lastIndexOf, addAll, addAll, iterator, size, toArray, toArray, remove, remove, set, containsAll, listIterator, listIterator, removeAll, retainAll, subList |
Methods inherited from class Object | |
---|---|
wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll |
Method Detail |
---|
public boolean containsWithinBounds(Object o)
from
value for the range and less than or equal to the to
value.
true
if the object is between the from and to values
public Comparable getFrom()
public Comparable getTo()
public String inspect()
public boolean isReverse()
true
if this is a reverse range
public void step(int step, Closure closure)
public List step(int step)
Copyright © 2003-2009 The Codehaus. All rights reserved.