|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.soap.providers.sp.Hashset
Hashset
is a simple set container built on top of Hashtable
. Its is indexed by a key which should satisfy all the requirements for Hashtable
keys.
Hashset
internally uses a Hashtable
to store items. All methods of the class are indirectly synchronized
and, hence, multi-thread safe.
Constructor Summary | |
Hashset() Construct an empty set. |
|
Hashset(Hashset s) Create a copy of an existing set. |
Method Summary | |
void |
clear() Clear the set. |
java.lang.Object |
clone() Clone the hash set (by invoking the copy constructor). |
boolean |
contains(java.lang.Object v) Check if the set contains the specified element. |
java.util.Enumeration |
elements() Return an enumeration of the elements in the set. |
java.lang.Object |
getAny() Get a random element in the set. |
boolean |
isEmpty() Check if the set is empty. |
void |
put(java.lang.Object v) Add the given element to the set. |
void |
remove(java.lang.Object v) Remove the item from the set. |
int |
size() Return the size of the set. |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Hashset()
Construct an empty set.
public Hashset(Hashset s)
Create a copy of an existing set. The internal table is cloned. If the provided set is null, construct an empty set.
s
- the set to create copy from.Method Detail |
public java.lang.Object clone()
Clone the hash set (by invoking the copy constructor).
public int size()
Return the size of the set.
public boolean isEmpty()
Check if the set is empty.
true
iff the set if empty.public java.util.Enumeration elements()
Return an enumeration of the elements in the set.
public boolean contains(java.lang.Object v)
Check if the set contains the specified element.
true
iff the item is in the set.java.lang.NullPointerException
- if the item is null
.public void put(java.lang.Object v)
Add the given element to the set.
v
- the item to add to the set.java.lang.NullPointerException
- if the item is null
.public void remove(java.lang.Object v)
Remove the item from the set.
v
- the item to add to the set.java.lang.NullPointerException
- if the item is null
.public void clear()
Clear the set.
public java.lang.Object getAny()
Get a random element in the set. The element returned is not quite random; it is the first element in the internal enumeration generated for this set.
If the set is empty, a null
is returned.
null
if the set is empty.
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |