protected class HashMap.Values extends DataStructure
| Modifier | Constructor and Description |
|---|---|
protected |
Values() |
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Clears this data structure by removing all content from it.
|
boolean |
contains(java.lang.Object obj)
Checks whether
obj (or another instance equal to obj in terms of
java.lang.Object.equals(Object) ) is already present within this data structure
instance and returns true only if this is the case. |
Iterator |
iterator()
Returns an iterator over all items stored within this data structure instance.
|
int |
size()
Returns the current size of the data structure.
|
add, addAll, containsAll, getClassShortName, hashCode, isEmpty, remove, toArray, toArray, toStringpublic Iterator iterator()
DataStructureiterator in class DataStructurepublic void clear()
DataStructureclear in class DataStructurepublic boolean contains(java.lang.Object obj)
DataStructureobj (or another instance equal to obj in terms of
java.lang.Object.equals(Object) ) is already present within this data structure
instance and returns true only if this is the case.contains in class DataStructureobj - the object to check the presence oftrue if obj is contained by this instance, false if notpublic int size()
DataStructuresize in class DataStructure