public interface Set extends Collection
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(Object o) |
boolean |
addAll(Collection c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection c) |
boolean |
equals(Object o) |
int |
hashCode() |
boolean |
isEmpty() |
Iterator |
iterator() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection c) |
boolean |
retainAll(Collection c) |
int |
size() |
Object[] |
toArray() |
Object[] |
toArray(Object[] a) |
int size()
size in interface Collectionboolean isEmpty()
isEmpty in interface Collectionboolean contains(Object o)
contains in interface CollectionIterator iterator()
iterator in interface Collectioniterator in interface IterableObject[] toArray()
toArray in interface CollectionObject[] toArray(Object[] a)
toArray in interface Collectionboolean add(Object o)
add in interface Collectionboolean remove(Object o)
remove in interface Collectionboolean containsAll(Collection c)
containsAll in interface Collectionboolean addAll(Collection c)
addAll in interface Collectionboolean retainAll(Collection c)
retainAll in interface Collectionboolean removeAll(Collection c)
removeAll in interface Collectionvoid clear()
clear in interface Collectionboolean equals(Object o)
equals in interface Collectionequals in class Objectint hashCode()
hashCode in interface CollectionhashCode in class ObjectCopyright © 2005–2021 Javolution. All rights reserved.