| |
|
| java.lang.Object edu.rice.cs.util.OrderedHashSet
OrderedHashSet | public class OrderedHashSet implements Collection<Type>(Code) | | A set class patterned after HashSet except that the construction order for elements is scrupulously maintained
for the sake of supporting obvious list operations based on construction order (addition to the set).
|
Inner Class :class OHMIterator implements Iterator<Type> | |
add | public boolean add(Type elt)(Code) | | Relying on standard 0-ary constructor
|
clear | public void clear()(Code) | | |
get | public Type get(int i)(Code) | | |
hashCode | public int hashCode()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
remove | public Type remove(int i)(Code) | | {@link IndexOutOfBoundsException |
toArray | public T[] toArray(T[] a)(Code) | | |
|
|
|