|
GNU Trove | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection
java.util.AbstractSet
gnu.trove.decorator.TIntHashSetDecorator
Wrapper class to make a TIntHashSet conform to the java.util.Set API. This class simply decorates an underlying TIntHashSet and translates the Object-based APIs into their Trove primitive analogs.
Note that wrapping and unwrapping primitive values is extremely inefficient. If possible, users of this class should override the appropriate methods in this class and use a table of canonical values.
Created: Tue Sep 24 22:08:17 PDT 2002
Field Summary | |
protected TIntHashSet |
_set
the wrapped primitive set |
Constructor Summary | |
TIntHashSetDecorator(TIntHashSet set)
Creates a wrapper that decorates the specified primitive set. |
Method Summary | |
boolean |
add(java.lang.Object value)
Inserts a value into the set. |
void |
clear()
Empties the set. |
java.lang.Object |
clone()
Clones the underlying trove collection and returns the clone wrapped in a new decorator instance. |
boolean |
equals(java.lang.Object other)
Compares this set with another set for equality of their stored entries. |
boolean |
isEmpty()
Indicates whether set has any entries. |
java.util.Iterator |
iterator()
Creates an iterator over the values of the set. |
boolean |
remove(java.lang.Object value)
Deletes a value from the set. |
int |
size()
Returns the number of entries in the set. |
protected int |
unwrap(java.lang.Object value)
Unwraps a value |
protected java.lang.Integer |
wrap(int k)
Wraps a value |
Methods inherited from class java.util.AbstractSet |
hashCode, removeAll |
Methods inherited from class java.util.AbstractCollection |
addAll, contains, containsAll, retainAll, toArray, toArray, toString |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.Set |
addAll, contains, containsAll, hashCode, removeAll, retainAll, toArray, toArray |
Field Detail |
protected TIntHashSet _set
Constructor Detail |
public TIntHashSetDecorator(TIntHashSet set)
Method Detail |
public java.lang.Object clone()
public boolean add(java.lang.Object value)
add
in interface java.util.Set
public boolean equals(java.lang.Object other)
equals
in interface java.util.Set
other
- an Object
value
public void clear()
clear
in interface java.util.Set
public boolean remove(java.lang.Object value)
remove
in interface java.util.Set
value
- an Object
value
public java.util.Iterator iterator()
iterator
in interface java.util.Set
public int size()
size
in interface java.util.Set
public boolean isEmpty()
isEmpty
in interface java.util.Set
protected java.lang.Integer wrap(int k)
protected int unwrap(java.lang.Object value)
|
GNU Trove | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |