public class LazyBSONObject.LazyBSONKeySet extends Object
| Constructor and Description |
|---|
LazyBSONObject.LazyBSONKeySet() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(String e) |
boolean |
addAll(Collection<? extends E> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> collection) |
boolean |
isEmpty() |
Iterator<String> |
iterator() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size()
This method runs in time linear to the total size of all keys in the document.
|
String[] |
toArray() |
<T> T[] |
toArray(T[] a) |
public int size()
public boolean isEmpty()
public boolean contains(Object o)
public String[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(String e)
public boolean remove(Object o)
public boolean containsAll(Collection<?> collection)
public boolean addAll(Collection<? extends E> c)
addAll in interface Collection<E>addAll in interface Set<E>public boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>retainAll in interface Set<E>public boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>removeAll in interface Set<E>public void clear()
clear in interface Collection<E>clear in interface Set<E>