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 Collection
boolean isEmpty()
isEmpty
in interface Collection
boolean contains(Object o)
contains
in interface Collection
Iterator iterator()
iterator
in interface Collection
iterator
in interface Iterable
Object[] toArray()
toArray
in interface Collection
Object[] toArray(Object[] a)
toArray
in interface Collection
boolean add(Object o)
add
in interface Collection
boolean remove(Object o)
remove
in interface Collection
boolean containsAll(Collection c)
containsAll
in interface Collection
boolean addAll(Collection c)
addAll
in interface Collection
boolean retainAll(Collection c)
retainAll
in interface Collection
boolean removeAll(Collection c)
removeAll
in interface Collection
void clear()
clear
in interface Collection
boolean equals(Object o)
equals
in interface Collection
equals
in class Object
int hashCode()
hashCode
in interface Collection
hashCode
in class Object
Copyright © 2005–2014 Javolution. All rights reserved.