| Package | Description |
|---|---|
| eu.simuline.util |
Utility classes: very inhomogeneous.
|
| Modifier and Type | Class and Description |
|---|---|
(package private) static class |
CollectionsExt.ImmutableSortedMultiSet<E>
A sorted multi-set which prevents being modified
by throwing an exception for the modifying methods.
|
class |
TreeMultiSet<T>
Represents a sorted set with multiplicities based on a
TreeMap. |
| Modifier and Type | Field and Description |
|---|---|
private SortedMultiSet<E> |
CollectionsExt.ImmutableSortedMultiSet.mSet |
| Modifier and Type | Method and Description |
|---|---|
SortedMultiSet<E> |
CollectionsExt.ImmutableSortedMultiSet.headSet(E toElement) |
SortedMultiSet<T> |
SortedMultiSet.headSet(T toElement)
Returns a view of the portion of this multi-set
whose elements are strictly less than
toElement. |
SortedMultiSet<T> |
TreeMultiSet.headSet(T toElement)
Returns a view of the portion of this multi-set
whose elements are strictly less than
toElement. |
SortedMultiSet<E> |
CollectionsExt.ImmutableSortedMultiSet.subSet(E fromElement,
E toElement) |
SortedMultiSet<T> |
SortedMultiSet.subSet(T fromElement,
T toElement)
Returns a view of the portion of this multi-set
whose elements range from
fromElement inclusively
to toElement exclusively. |
SortedMultiSet<T> |
TreeMultiSet.subSet(T fromElement,
T toElement)
Returns a view of the portion of this multi-set
whose elements range from
fromElement inclusively
to toElement exclusively. |
SortedMultiSet<E> |
CollectionsExt.ImmutableSortedMultiSet.tailSet(E fromElement) |
SortedMultiSet<T> |
SortedMultiSet.tailSet(T fromElement)
Returns a view of the portion of this multi-set
whose elements are greater than or equal to
fromElement. |
SortedMultiSet<T> |
TreeMultiSet.tailSet(T fromElement)
Returns a view of the portion of this multi-set
whose elements are greater than or equal to
fromElement. |
SortedMultiSet<E> |
CollectionsExt.ImmutableSortedMultiSet.unrestricted() |
| Modifier and Type | Method and Description |
|---|---|
static <E> MultiSet<E> |
CollectionsExt.getImmutableSortedMultiSet(SortedMultiSet<E> mSet) |
| Constructor and Description |
|---|
ImmutableSortedMultiSet(Set<CollectionsExt.Modification> mods,
SortedMultiSet<E> mSet) |
ImmutableSortedMultiSet(SortedMultiSet<E> mSet)
Creates a new empty
ImmutableSortedMultiSet
which equals mSet but cannot be modified
neither directly nor via its iterator. |
Copyright © 2012–2018 Simuline Organization (l2r). All rights reserved.