BaseItemTemplateResultFilepublic class SortedSet<V> extends SimpleSet<V>
| Modifier and Type | Field | Description |
|---|---|---|
protected java.util.Comparator<V> |
cpr |
ALLOWDUPLICATE, ALLOWEMPTYVALUE, BIDI, CASESENSITIVE, flag, MAP, READONLY, REMOVED, VISIBLE| Constructor | Description |
|---|---|
SortedSet(boolean comparator) |
| Modifier and Type | Method | Description |
|---|---|---|
java.util.Comparator<java.lang.Object> |
comparator() |
|
<ST extends SimpleSet<V>> |
headSet(V toElement,
boolean inclusive) |
Returns a view of the portion of this map whose keys are less than (or
equal to, if
inclusive is true) toKey. |
V |
higher(V toElement) |
|
boolean |
isComparator() |
|
<ST extends SimpleSet<V>> |
tailSet(V fromElement,
boolean inclusive) |
Returns a view of the portion of this map whose keys are greater than (or
equal to, if
inclusive is true) fromKey. |
SortedSet<V> |
withComparator(java.lang.String column) |
|
SortedSet<V> |
withComparator(java.util.Comparator<V> comparator) |
add, addHashItem, addKeyValue, checkValue, clear, contains, containsAll, containsAll, first, flag, get, getByIndex, getKeyByIndex, getPositionKey, getTypClass, getValue, hashKey, hasKeyAndPos, indexOf, init, init, init, isAllowDuplicate, isAllowEmptyValue, isCaseSensitive, isEmpty, isReadOnly, isVisible, last, lastIndexOf, move, pack, parseItem, removeAll, removeByIndex, removeByObject, removeItem, replaceAllValues, reset, reset, retainAll, setAllowEmptyValue, setFlag, setValue, size, toArray, toArray, toString, with, withAllowDuplicate, withAllowEmptyValue, withCaseSensitive, withFlag, without, withSize, withType, withVisibleaddAll, ceiling, copyEntity, equals, filter, filterItems, hashCode, iterator, iterator, iteratorReverse, listIterator, listIterator, lower, subSet, withListequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitaddAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, of, of, of, of, of, of, of, of, of, of, of, of, removeAll, retainAll, size, spliterator, toArray, toArrayadd, add, addAll, clone, fireProperty, getNewList, instanceOf, intersection, minus, remove, remove, set, subList, toString, toString, union, withListenerprotected java.util.Comparator<V> cpr
public java.util.Comparator<java.lang.Object> comparator()
comparator in class AbstractArray<V>public boolean isComparator()
isComparator in class AbstractArray<V>public <ST extends SimpleSet<V>> ST tailSet(V fromElement, boolean inclusive)
inclusive is true) fromKey.ST - the ContainerClassfromElement - low endpoint of the keys in the returned mapinclusive - true if the low endpoint is to be included in the
returned viewinclusive is true) fromKeypublic <ST extends SimpleSet<V>> ST headSet(V toElement, boolean inclusive)
inclusive is true) toKey. The returned map
is backed by this map, so changes in the returned map are reflected in
this map, and vice-versa. The returned map supports all optional map
operations that this map supports.
The returned map will throw an IllegalArgumentException on an
attempt to insert a key outside its range.
ST - the ContainerClasstoElement - high endpoint of the keys in the returned mapinclusive - true if the high endpoint is to be included in the
returned view