| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
protected class |
AbstractInt2ObjectSortedMap.KeySet
A wrapper exhibiting the keys of a map.
|
class |
AbstractIntSortedSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
|
static class |
IntSortedSets.EmptySet
An immutable class representing the empty sorted set and implementing a type-specific set interface.
|
static class |
IntSortedSets.Singleton
A class representing a singleton sorted set.
|
static class |
IntSortedSets.SynchronizedSortedSet
A synchronized wrapper class for sorted sets.
|
static class |
IntSortedSets.UnmodifiableSortedSet
An unmodifiable wrapper class for sorted sets.
|
| Modifier and Type | Field and Description |
|---|---|
protected IntSortedSet |
Int2ObjectLinkedOpenHashMap.keys
Cached set of keys.
|
protected IntSortedSet |
IntSortedSets.SynchronizedSortedSet.sortedSet |
protected IntSortedSet |
IntSortedSets.UnmodifiableSortedSet.sortedSet |
| Modifier and Type | Method and Description |
|---|---|
IntSortedSet |
IntSortedSets.EmptySet.headSet(int from) |
IntSortedSet |
IntSortedSets.Singleton.headSet(int to) |
IntSortedSet |
IntSortedSets.SynchronizedSortedSet.headSet(int to) |
IntSortedSet |
IntSortedSets.UnmodifiableSortedSet.headSet(int to) |
IntSortedSet |
IntSortedSet.headSet(int toElement) |
IntSortedSet |
AbstractInt2ObjectSortedMap.KeySet.headSet(int to) |
IntSortedSet |
IntSortedSets.EmptySet.headSet(Integer from) |
IntSortedSet |
IntSortedSets.Singleton.headSet(Integer to)
Deprecated.
Please use the corresponding type-specific method instead.
|
IntSortedSet |
IntSortedSets.SynchronizedSortedSet.headSet(Integer to) |
IntSortedSet |
IntSortedSets.UnmodifiableSortedSet.headSet(Integer to) |
IntSortedSet |
IntSortedSet.headSet(Integer toElement)
Returns a view of the portion of this sorted set whose elements are strictly less than
toElement. |
IntSortedSet |
AbstractIntSortedSet.headSet(Integer to)
Deprecated.
Please use the corresponding type-specific method instead.
|
IntSortedSet |
Int2ObjectSortedMaps.EmptySortedMap.keySet() |
IntSortedSet |
Int2ObjectSortedMaps.Singleton.keySet() |
IntSortedSet |
Int2ObjectSortedMaps.SynchronizedSortedMap.keySet() |
IntSortedSet |
Int2ObjectSortedMaps.UnmodifiableSortedMap.keySet() |
IntSortedSet |
Int2ObjectSortedMap.keySet()
Returns a sorted-set view of the keys contained in this map.
|
IntSortedSet |
Int2ObjectLinkedOpenHashMap.keySet() |
IntSortedSet |
AbstractInt2ObjectSortedMap.keySet()
Returns a type-specific-sorted-set view of the keys of this map.
|
static IntSortedSet |
IntSortedSets.singleton(int element)
Returns a type-specific immutable sorted set containing only the specified element.
|
static IntSortedSet |
IntSortedSets.singleton(int element,
IntComparator comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator.
|
static IntSortedSet |
IntSortedSets.singleton(Object element)
Returns a type-specific immutable sorted set containing only the specified element.
|
static IntSortedSet |
IntSortedSets.singleton(Object element,
IntComparator comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator.
|
IntSortedSet |
IntSortedSets.EmptySet.subSet(Integer from,
Integer to) |
IntSortedSet |
IntSortedSets.Singleton.subSet(Integer from,
Integer to)
Deprecated.
Please use the corresponding type-specific method instead.
|
IntSortedSet |
IntSortedSets.SynchronizedSortedSet.subSet(Integer from,
Integer to) |
IntSortedSet |
IntSortedSets.UnmodifiableSortedSet.subSet(Integer from,
Integer to) |
IntSortedSet |
IntSortedSet.subSet(Integer fromElement,
Integer toElement)
Returns a view of the portion of this sorted set whose elements range from
fromElement, inclusive, to toElement, exclusive. |
IntSortedSet |
AbstractIntSortedSet.subSet(Integer from,
Integer to)
Deprecated.
Please use the corresponding type-specific method instead.
|
IntSortedSet |
IntSortedSets.EmptySet.subSet(int from,
int to) |
IntSortedSet |
IntSortedSets.Singleton.subSet(int from,
int to) |
IntSortedSet |
IntSortedSets.SynchronizedSortedSet.subSet(int from,
int to) |
IntSortedSet |
IntSortedSets.UnmodifiableSortedSet.subSet(int from,
int to) |
IntSortedSet |
IntSortedSet.subSet(int fromElement,
int toElement) |
IntSortedSet |
AbstractInt2ObjectSortedMap.KeySet.subSet(int from,
int to) |
static IntSortedSet |
IntSortedSets.synchronize(IntSortedSet s)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set.
|
static IntSortedSet |
IntSortedSets.synchronize(IntSortedSet s,
Object sync)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set, using an assigned object to synchronize.
|
IntSortedSet |
IntSortedSets.EmptySet.tailSet(int to) |
IntSortedSet |
IntSortedSets.Singleton.tailSet(int from) |
IntSortedSet |
IntSortedSets.SynchronizedSortedSet.tailSet(int from) |
IntSortedSet |
IntSortedSets.UnmodifiableSortedSet.tailSet(int from) |
IntSortedSet |
IntSortedSet.tailSet(int fromElement) |
IntSortedSet |
AbstractInt2ObjectSortedMap.KeySet.tailSet(int from) |
IntSortedSet |
IntSortedSets.EmptySet.tailSet(Integer to) |
IntSortedSet |
IntSortedSets.Singleton.tailSet(Integer from)
Deprecated.
Please use the corresponding type-specific method instead.
|
IntSortedSet |
IntSortedSets.SynchronizedSortedSet.tailSet(Integer from) |
IntSortedSet |
IntSortedSets.UnmodifiableSortedSet.tailSet(Integer from) |
IntSortedSet |
IntSortedSet.tailSet(Integer fromElement)
Returns a view of the portion of this sorted set whose elements are greater than or equal to
fromElement. |
IntSortedSet |
AbstractIntSortedSet.tailSet(Integer from)
Deprecated.
Please use the corresponding type-specific method instead.
|
static IntSortedSet |
IntSortedSets.unmodifiable(IntSortedSet s)
Returns an unmodifiable type-specific sorted set backed by the given type-specific sorted set.
|
| Modifier and Type | Method and Description |
|---|---|
static IntSortedSet |
IntSortedSets.synchronize(IntSortedSet s)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set.
|
static IntSortedSet |
IntSortedSets.synchronize(IntSortedSet s,
Object sync)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set, using an assigned object to synchronize.
|
static IntSortedSet |
IntSortedSets.unmodifiable(IntSortedSet s)
Returns an unmodifiable type-specific sorted set backed by the given type-specific sorted set.
|
| Constructor and Description |
|---|
SynchronizedSortedSet(IntSortedSet s) |
SynchronizedSortedSet(IntSortedSet s,
Object sync) |
UnmodifiableSortedSet(IntSortedSet s) |
Copyright © 2016. All rights reserved.