TShortSet, TShortCollectionprotected class TShortCharHashMap.TKeyView extends java.lang.Object implements TShortSet
serialVersionUID| Modifier | Constructor | Description |
|---|---|---|
protected |
TKeyView() |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
add(short entry) |
Unsupported when operating upon a Key Set view of a TShortCharMap
|
boolean |
addAll(short[] array) |
Unsupported when operating upon a Key Set view of a TShortCharMap
|
boolean |
addAll(TShortCollection collection) |
Unsupported when operating upon a Key Set view of a TShortCharMap
|
boolean |
addAll(java.util.Collection<? extends java.lang.Short> collection) |
Unsupported when operating upon a Key Set view of a TShortCharMap
|
void |
clear() |
Empties the set.
|
boolean |
contains(short entry) |
Returns true if this set contains the specified element.
|
boolean |
containsAll(short[] array) |
Tests the set to determine if all of the elements in
array are present.
|
boolean |
containsAll(TShortCollection collection) |
Tests the set to determine if all of the elements in
TShortCollection are present.
|
boolean |
containsAll(java.util.Collection<?> collection) |
Tests the set to determine if all of the elements in
collection are present.
|
boolean |
equals(java.lang.Object other) |
Compares the specified object with this set for equality.
|
boolean |
forEach(TShortProcedure procedure) |
Executes procedure for each element in the set.
|
short |
getNoEntryValue() |
Returns the value that is used to represent null.
|
int |
hashCode() |
Returns the hash code value for this set.
|
boolean |
isEmpty() |
Returns true if this set contains no elements.
|
TShortIterator |
iterator() |
Creates an iterator over the values of the set.
|
boolean |
remove(short entry) |
Removes entry from the set.
|
boolean |
removeAll(short[] array) |
Removes all of the elements in array from the set.
|
boolean |
removeAll(TShortCollection collection) |
Removes all of the elements in TShortCollection from the set.
|
boolean |
removeAll(java.util.Collection<?> collection) |
Removes all of the elements in collection from the set.
|
boolean |
retainAll(short[] array) |
Removes any values in the set which are not contained in
array.
|
boolean |
retainAll(TShortCollection collection) |
Removes any values in the set which are not contained in
TShortCollection.
|
boolean |
retainAll(java.util.Collection<?> collection) |
Removes any values in the set which are not contained in
collection.
|
int |
size() |
Returns the number of elements in this set (its cardinality).
|
short[] |
toArray() |
Returns an array containing all of the elements in this set.
|
short[] |
toArray(short[] dest) |
Returns an array containing elements in this set.
|
java.lang.String |
toString() |
public TShortIterator iterator()
iterator in interface TShortCollectioniterator in interface TShortSetTShortIterator valuepublic short getNoEntryValue()
getNoEntryValue in interface TShortCollectiongetNoEntryValue in interface TShortSetpublic int size()
size in interface TShortCollectionsize in interface TShortSetpublic boolean isEmpty()
isEmpty in interface TShortCollectionisEmpty in interface TShortSetpublic boolean contains(short entry)
contains in interface TShortCollectioncontains in interface TShortSetentry - an short valuepublic short[] toArray()
The returned array will be "safe" in that no references to it are maintained by this set. (In other words, this method must allocate a new array even if this set is backed by an array). The caller is thus free to modify the returned array.
This method acts as bridge between array-based and collection-based APIs.
toArray in interface TShortCollectiontoArray in interface TShortSetpublic short[] toArray(short[] dest)
If this set fits in the specified array with room to spare
(i.e., the array has more elements than this set), the element in
the array immediately following the end of the set is set to
TShortSet.getNoEntryValue(). (This is useful in determining
the length of this set only if the caller knows that this
set does not contain any elements representing null.)
If the native array is smaller than the set size, the array will be filled with elements in Iterator order until it is full and exclude the remainder.
If this set makes any guarantees as to what order its elements are returned by its iterator, this method must return the elements in the same order.
toArray in interface TShortCollectiontoArray in interface TShortSetdest - the array into which the elements of this set are to be
stored.public boolean add(short entry)
add in interface TShortCollectionadd in interface TShortSetentry - a short valuepublic boolean remove(short entry)
remove in interface TShortCollectionremove in interface TShortSetentry - an short valuepublic boolean containsAll(java.util.Collection<?> collection)
containsAll in interface TShortCollectioncontainsAll in interface TShortSetcollection - a Collection valuepublic boolean containsAll(TShortCollection collection)
containsAll in interface TShortCollectioncontainsAll in interface TShortSetcollection - a TShortCollection valuepublic boolean containsAll(short[] array)
containsAll in interface TShortCollectioncontainsAll in interface TShortSetarray - as array of short primitives.public boolean addAll(java.util.Collection<? extends java.lang.Short> collection)
addAll in interface TShortCollectionaddAll in interface TShortSetcollection - a Collection valuepublic boolean addAll(TShortCollection collection)
addAll in interface TShortCollectionaddAll in interface TShortSetcollection - a TShortCollection valuepublic boolean addAll(short[] array)
addAll in interface TShortCollectionaddAll in interface TShortSetarray - a array of short primitives.public boolean retainAll(java.util.Collection<?> collection)
retainAll in interface TShortCollectionretainAll in interface TShortSetcollection - a Collection valuepublic boolean retainAll(TShortCollection collection)
retainAll in interface TShortCollectionretainAll in interface TShortSetcollection - a TShortCollection valuepublic boolean retainAll(short[] array)
retainAll in interface TShortCollectionretainAll in interface TShortSetarray - an array of short primitives.public boolean removeAll(java.util.Collection<?> collection)
removeAll in interface TShortCollectionremoveAll in interface TShortSetcollection - a Collection valuepublic boolean removeAll(TShortCollection collection)
removeAll in interface TShortCollectionremoveAll in interface TShortSetcollection - a TShortCollection valuepublic boolean removeAll(short[] array)
removeAll in interface TShortCollectionremoveAll in interface TShortSetarray - an array of short primitives.public void clear()
clear in interface TShortCollectionclear in interface TShortSetpublic boolean forEach(TShortProcedure procedure)
forEach in interface TShortCollectionforEach in interface TShortSetprocedure - a TShortProcedure valuepublic boolean equals(java.lang.Object other)
TShortSetequals in interface TShortCollectionequals in interface TShortSetequals in class java.lang.Objectother - object to be compared for equality with this setpublic int hashCode()
TShortSetObject.hashCode().hashCode in interface TShortCollectionhashCode in interface TShortSethashCode in class java.lang.ObjectObject.equals(Object),
Set.equals(Object)public java.lang.String toString()
toString in class java.lang.Object