|
| HashMapKeySet (HashMap *parent) |
|
virtual | ~HashMapKeySet () |
|
virtual bool | contains (const K &key) const |
| Returns true if this collection contains the specified element.
|
|
virtual int | size () const |
| Returns the number of elements in this collection.
|
|
virtual void | clear () |
| Removes all of the elements from this collection (optional operation).
|
|
virtual bool | remove (const K &key) |
| Removes a single instance of the specified element from the collection.
|
|
virtual Iterator< K > * | iterator () |
|
virtual Iterator< K > * | iterator () const |
|
| AbstractSet () |
|
virtual | ~AbstractSet () |
|
virtual bool | removeAll (const Collection< K > &collection) |
| Removes all this collection's elements that are also contained in the specified collection (optional operation).After this call returns, this collection will contain no elements in common with the specified collection.- Parameters
-
collection | The Collection whose elements are to be removed from this one. |
- Returns
- true if the collection changed as a result of this call.
- Exceptions
-
UnsupportedOperationExceptio | if this is an unmodifiable collection. |
NullPointerException | if the Collection is a container of pointers and does not allow NULL values. |
|
|
virtual | ~Set () |
|
virtual | ~Collection () |
|
virtual bool | add (const K &value)=0 |
| Returns true if this collection changed as a result of the call.
|
|
virtual | ~Iterable () |
|
virtual | ~Synchronizable () |
|
| AbstractCollection () |
|
| AbstractCollection (const AbstractCollection &other) |
| Copy Constructor, copy element from the source collection to this collection after clearing any element stored in this collection.
|
|
virtual | ~AbstractCollection () |
|
AbstractCollection< K > & | operator= (const AbstractCollection< K > &collection) |
| Assignment Operator, copy element from the source collection to this collection after clearing any element stored in this collection.
|
|
virtual bool | containsAll (const Collection< K > &collection) const |
| Returns true if this collection contains all of the elements in the specified collection.- Parameters
-
- Exceptions
-
NullPointerException | if the Collection contains pointers and the Collection does not allow for NULL elements (optional check). |
|
|
virtual bool | equals (const Collection< K > &collection) const |
| Answers true if this Collection and the one given are the same size and if each element contained in the Collection given is equal to an element contained in this collection.
|
|
virtual void | copy (const Collection< K > &collection) |
| Renders this Collection as a Copy of the given Collection.
|
|
virtual bool | isEmpty () const |
| Returns true if this collection contains no elements.
|
|
virtual bool | add (const K &value DECAF_UNUSED) |
|
virtual bool | addAll (const Collection< K > &collection) |
| Adds all of the elements in the specified collection to this collection.The behavior of this operation is undefined if the specified collection is modified while the operation is in progress. (This implies that the behavior of this call is undefined if the specified collection is this collection, and this collection is nonempty.)- Parameters
-
collection | The Collection whose elements are added to this one. |
- Returns
- true if this collection changed as a result of the call
- Exceptions
-
UnsupportedOperationExceptio | if this is an unmodifiable collection. |
NullPointerException | if the Collection is a container of pointers and does not allow NULL values. |
IllegalArgumentException | if some property of an element prevents it from being added to this collection |
IllegalStateException | if an element cannot be added at this time due to insertion restrictions. |
|
|
virtual bool | retainAll (const Collection< K > &collection) |
| Retains only the elements in this collection that are contained in the specified collection (optional operation).In other words, removes from this collection all of its elements that are not contained in the specified collection.- Parameters
-
collection | The Collection whose elements are to be retained. |
- Returns
- true if the collection changed as a result of this call.
- Exceptions
-
UnsupportedOperationExceptio | if this is an unmodifiable collection. |
NullPointerException | if the Collection is a container of pointers and does not allow NULL values. |
|
|
virtual std::vector< K > | toArray () const |
| Answers an STL vector containing copies of all elements contained in this Collection.
|
|
virtual void | lock () |
| Locks the object.
|
|
virtual bool | tryLock () |
| Attempts to Lock the object, if the lock is already held by another thread than this method returns false.
|
|
virtual void | unlock () |
| Unlocks the object.
|
|
virtual void | wait () |
| Waits on a signal from this object, which is generated by a call to Notify.
|
|
virtual void | wait (long long millisecs) |
| Waits on a signal from this object, which is generated by a call to Notify.
|
|
virtual void | wait (long long millisecs, int nanos) |
| Waits on a signal from this object, which is generated by a call to Notify.
|
|
virtual void | notify () |
| Signals a waiter on this object that it can now wake up and continue.
|
|
virtual void | notifyAll () |
| Signals the waiters on this object that it can now wake up and continue.
|
|
template<typename K, typename V, typename HASHCODE = HashCode<K>>
template<typename K, typename V, typename HASHCODE = HashCode<K>>
Returns true if this collection contains the specified element.
More formally, returns true if and only if this collection contains at least one element e such that (value == NULL ? e == NULL : value == e ).
- Parameters
-
value | The value to check for presence in the collection. |
- Returns
- true if there is at least one of the elements in the collection
- Exceptions
-
NullPointerException | if the Collection contains pointers and the Collection does not allow for NULL elements (optional check). |
Implements decaf::util::Collection< K >.
References decaf::util::HashMap< K, V, HASHCODE >::containsKey().
template<typename K, typename V, typename HASHCODE = HashCode<K>>
Removes a single instance of the specified element from the collection.
More formally, removes an element e such that (value == NULL ? e == NULL : value == e), if this collection contains one or more such elements. Returns true if this collection contained the specified element (or equivalently, if this collection changed as a result of the call).
- Parameters
-
value | The reference to the element to remove from this Collection. |
- Returns
- true if the collection was changed, false otherwise.
- Exceptions
-
UnsupportedOperationExceptio | if this is an unmodifiable collection. |
NullPointerException | if the Collection is a container of pointers and does not allow NULL values. |
Implements decaf::util::Collection< K >.
References NULL, and decaf::util::HashMap< K, V, HASHCODE >::removeEntry().
template<typename K, typename V, typename HASHCODE = HashCode<K>>