All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.Range

java.lang.Object
   |
   +----COM.objectspace.jgl.Range

public class Range
extends Object
An Range is an object that contains two forward iterators. It is most commonly used for conveniently storing and passing pairs of iterators.


Variable Index

 o begin
The begin iterator
 o end
The end iterator

Constructor Index

 o Range()
Construct myself to hold a pair of iterators initially null.
 o Range(ForwardIterator, ForwardIterator)
Construct myself to hold a pair of iterators.

Method Index

 o equals(Object)
 o equals(Range)
 o toString()
Return a string that describes me.

Variables

 o begin
 public ForwardIterator begin
The begin iterator

 o end
 public ForwardIterator end
The end iterator

Constructors

 o Range
 public Range(ForwardIterator begin,
              ForwardIterator end)
Construct myself to hold a pair of iterators.

Parameters:
x - The first object.
y - The second object.
 o Range
 public Range()
Construct myself to hold a pair of iterators initially null.

Methods

 o toString
 public String toString()
Return a string that describes me.

Overrides:
toString in class Object
 o equals
 public boolean equals(Object object)
Overrides:
equals in class Object
 o equals
 public boolean equals(Range range)

All Packages  Class Hierarchy  This Package  Previous  Next  Index