Package com.google.common.collect
Class StandardTable.ColumnKeySet
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- com.google.common.collect.Sets.ImprovedAbstractSet<T>
-
- com.google.common.collect.StandardTable.TableSet<C>
-
- com.google.common.collect.StandardTable.ColumnKeySet
-
- All Implemented Interfaces:
java.lang.Iterable<C>
,java.util.Collection<C>
,java.util.Set<C>
- Enclosing class:
- StandardTable<R,C,V>
private class StandardTable.ColumnKeySet extends StandardTable.TableSet<C>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ColumnKeySet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
contains(java.lang.Object obj)
java.util.Iterator<C>
iterator()
boolean
remove(java.lang.Object obj)
boolean
removeAll(java.util.Collection<?> c)
boolean
retainAll(java.util.Collection<?> c)
int
size()
-
Methods inherited from class com.google.common.collect.StandardTable.TableSet
clear, isEmpty
-
Methods inherited from class java.util.AbstractCollection
add, addAll, containsAll, toArray, toArray, toString
-
-
-
-
Method Detail
-
iterator
public java.util.Iterator<C> iterator()
-
size
public int size()
-
remove
public boolean remove(java.lang.Object obj)
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
- Specified by:
removeAll
in interfacejava.util.Collection<C>
- Specified by:
removeAll
in interfacejava.util.Set<C>
- Overrides:
removeAll
in classSets.ImprovedAbstractSet<C>
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
- Specified by:
retainAll
in interfacejava.util.Collection<C>
- Specified by:
retainAll
in interfacejava.util.Set<C>
- Overrides:
retainAll
in classSets.ImprovedAbstractSet<C>
-
-