Class AbstractMapMultiSet.MultiSetEntry<E>
- java.lang.Object
-
- org.apache.commons.collections4.multiset.AbstractMultiSet.AbstractEntry<E>
-
- org.apache.commons.collections4.multiset.AbstractMapMultiSet.MultiSetEntry<E>
-
- All Implemented Interfaces:
MultiSet.Entry<E>
- Enclosing class:
- AbstractMapMultiSet<E>
protected static class AbstractMapMultiSet.MultiSetEntry<E> extends AbstractMultiSet.AbstractEntry<E>
Inner class MultiSetEntry.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Map.Entry<E,AbstractMapMultiSet.MutableInteger>parentEntry
-
Constructor Summary
Constructors Modifier Constructor Description protectedMultiSetEntry(java.util.Map.Entry<E,AbstractMapMultiSet.MutableInteger> parentEntry)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCount()Returns the number of occurrences for the element of this entry.EgetElement()Returns the element corresponding to this entry.-
Methods inherited from class org.apache.commons.collections4.multiset.AbstractMultiSet.AbstractEntry
equals, hashCode, toString
-
-
-
-
Field Detail
-
parentEntry
protected final java.util.Map.Entry<E,AbstractMapMultiSet.MutableInteger> parentEntry
-
-
Constructor Detail
-
MultiSetEntry
protected MultiSetEntry(java.util.Map.Entry<E,AbstractMapMultiSet.MutableInteger> parentEntry)
Constructor.- Parameters:
parentEntry- the entry to decorate
-
-
Method Detail
-
getElement
public E getElement()
Description copied from interface:MultiSet.EntryReturns the element corresponding to this entry.- Returns:
- the element corresponding to this entry
-
getCount
public int getCount()
Description copied from interface:MultiSet.EntryReturns the number of occurrences for the element of this entry.- Returns:
- the number of occurrences of the element
-
-