jxl.util
Class CountingHashSet<E>
java.lang.Object
jxl.util.CountingHashSet<E>
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Iterable<E>, java.util.Collection<E>, java.util.Set<E>
public class CountingHashSet<E>
- extends java.lang.Object
- implements java.io.Serializable, java.util.Set<E>
- See Also:
- Serialized Form
Method Summary |
boolean |
add(E e)
|
boolean |
addAll(java.util.Collection<? extends E> collection)
|
void |
clear()
|
boolean |
contains(java.lang.Object obj)
|
boolean |
containsAll(java.util.Collection<?> collection)
|
java.util.HashMap<E,java.lang.Integer> |
getCountMap()
|
boolean |
isEmpty()
|
java.util.Iterator<E> |
iterator()
|
boolean |
remove(java.lang.Object obj)
|
boolean |
removeAll(java.util.Collection<?> collection)
|
boolean |
retainAll(java.util.Collection<?> collection)
|
int |
size()
|
java.lang.Object[] |
toArray()
|
|
toArray(T[] obj)
|
java.util.List<java.util.Set<E>> |
toOrderedList()
Returns elements as orderd list from most frequent to least frequent
Elements of the list are Sets of E elements. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.util.Set |
equals, hashCode |
CountingHashSet
public CountingHashSet()
add
public boolean add(E e)
- Specified by:
add
in interface java.util.Collection<E>
- Specified by:
add
in interface java.util.Set<E>
addAll
public boolean addAll(java.util.Collection<? extends E> collection)
- Specified by:
addAll
in interface java.util.Collection<E>
- Specified by:
addAll
in interface java.util.Set<E>
clear
public void clear()
- Specified by:
clear
in interface java.util.Collection<E>
- Specified by:
clear
in interface java.util.Set<E>
contains
public boolean contains(java.lang.Object obj)
- Specified by:
contains
in interface java.util.Collection<E>
- Specified by:
contains
in interface java.util.Set<E>
containsAll
public boolean containsAll(java.util.Collection<?> collection)
- Specified by:
containsAll
in interface java.util.Collection<E>
- Specified by:
containsAll
in interface java.util.Set<E>
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface java.util.Collection<E>
- Specified by:
isEmpty
in interface java.util.Set<E>
iterator
public java.util.Iterator<E> iterator()
- Specified by:
iterator
in interface java.lang.Iterable<E>
- Specified by:
iterator
in interface java.util.Collection<E>
- Specified by:
iterator
in interface java.util.Set<E>
remove
public boolean remove(java.lang.Object obj)
- Specified by:
remove
in interface java.util.Collection<E>
- Specified by:
remove
in interface java.util.Set<E>
removeAll
public boolean removeAll(java.util.Collection<?> collection)
- Specified by:
removeAll
in interface java.util.Collection<E>
- Specified by:
removeAll
in interface java.util.Set<E>
retainAll
public boolean retainAll(java.util.Collection<?> collection)
- Specified by:
retainAll
in interface java.util.Collection<E>
- Specified by:
retainAll
in interface java.util.Set<E>
size
public int size()
- Specified by:
size
in interface java.util.Collection<E>
- Specified by:
size
in interface java.util.Set<E>
toArray
public java.lang.Object[] toArray()
- Specified by:
toArray
in interface java.util.Collection<E>
- Specified by:
toArray
in interface java.util.Set<E>
toArray
public <T> T[] toArray(T[] obj)
- Specified by:
toArray
in interface java.util.Collection<E>
- Specified by:
toArray
in interface java.util.Set<E>
toOrderedList
public java.util.List<java.util.Set<E>> toOrderedList()
- Returns elements as orderd list from most frequent to least frequent
Elements of the list are Sets of E elements. Every element of the set
was added the same number of times.
Thus a CountingHashSet that recived three adds of an element t,
two adds of element j and three adds of element k would return
a list { set {t,k}, set{j}}
getCountMap
public java.util.HashMap<E,java.lang.Integer> getCountMap()