Package tenapull.sync
Class InstancesTracker.KeySet
java.lang.Object
tenapull.sync.InstancesTracker.KeySet
- All Implemented Interfaces:
java.lang.Iterable<K>
,java.util.Collection<K>
,java.util.Set<K>
- Enclosing class:
- InstancesTracker<K,I>
public class InstancesTracker.KeySet
extends java.lang.Object
implements java.util.Set<K>
NOT COMPLETED. USE WITH EXTREME CAUTION. This is intended to be a dynamic
unmodifiable view of an instancesTracker's key set.
-
Constructor Summary
Constructors Constructor Description KeySet()
-
Method Summary
Modifier and Type Method Description boolean
add(K k)
boolean
addAll(java.util.Collection<? extends K> c)
void
clear()
boolean
contains(java.lang.Object o)
boolean
containsAll(java.util.Collection<?> c)
boolean
isEmpty()
java.util.Iterator<K>
iterator()
boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection<?> c)
boolean
retainAll(java.util.Collection<?> c)
int
size()
java.lang.Object[]
toArray()
<T> T[]
toArray(T[] a)
-
Constructor Details
-
KeySet
public KeySet()
-
-
Method Details
-
size
public int size() -
isEmpty
public boolean isEmpty() -
contains
public boolean contains(java.lang.Object o) -
iterator
-
toArray
public java.lang.Object[] toArray() -
toArray
public <T> T[] toArray(T[] a) -
add
-
remove
public boolean remove(java.lang.Object o) -
containsAll
public boolean containsAll(java.util.Collection<?> c) -
addAll
-
retainAll
public boolean retainAll(java.util.Collection<?> c) -
removeAll
public boolean removeAll(java.util.Collection<?> c) -
clear
public void clear()
-