Class ImmutableTreeMap.ImmutableSortedMapKeySet
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<K>
-
- org.eclipse.collections.impl.map.sorted.immutable.ImmutableTreeMap.ImmutableSortedMapKeySet
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Iterable<K>,java.util.Collection<K>,java.util.Set<K>
- Enclosing class:
- ImmutableTreeMap<K,V>
protected class ImmutableTreeMap.ImmutableSortedMapKeySet extends java.util.AbstractSet<K> implements java.io.Serializable- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description protectedImmutableSortedMapKeySet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(K key)booleanaddAll(java.util.Collection<? extends K> collection)voidclear()booleancontains(java.lang.Object o)booleancontainsAll(java.util.Collection<?> collection)java.util.Iterator<K>iterator()booleanremove(java.lang.Object key)booleanremoveAll(java.util.Collection<?> collection)booleanretainAll(java.util.Collection<?> collection)intsize()java.lang.Object[]toArray()<T> T[]toArray(T[] a)protected java.lang.ObjectwriteReplace()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
contains
public boolean contains(java.lang.Object o)
-
containsAll
public boolean containsAll(java.util.Collection<?> collection)
-
size
public int size()
-
iterator
public java.util.Iterator<K> iterator()
-
toArray
public java.lang.Object[] toArray()
-
toArray
public <T> T[] toArray(T[] a)
-
add
public boolean add(K key)
-
addAll
public boolean addAll(java.util.Collection<? extends K> collection)
-
remove
public boolean remove(java.lang.Object key)
-
removeAll
public boolean removeAll(java.util.Collection<?> collection)
-
clear
public void clear()
-
retainAll
public boolean retainAll(java.util.Collection<?> collection)
-
writeReplace
protected java.lang.Object writeReplace()
-
-