| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| it.unimi.dsi.fastutil.longs |
Provides type-specific classes for long elements or keys.
|
| it.unimi.dsi.fastutil.objects |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Int2ObjectSortedMap.FastSortedEntrySet<V>
A sorted entry set providing fast iteration.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectSortedSet<Map.Entry<Integer,V>> |
Int2ObjectSortedMaps.EmptySortedMap.entrySet() |
ObjectSortedSet<Map.Entry<Integer,V>> |
Int2ObjectSortedMaps.Singleton.entrySet() |
ObjectSortedSet<Map.Entry<Integer,V>> |
Int2ObjectSortedMaps.SynchronizedSortedMap.entrySet() |
ObjectSortedSet<Map.Entry<Integer,V>> |
Int2ObjectSortedMaps.UnmodifiableSortedMap.entrySet() |
ObjectSortedSet<Map.Entry<Integer,V>> |
Int2ObjectSortedMap.entrySet()
Returns a sorted-set view of the mappings contained in this map.
|
ObjectSortedSet<Map.Entry<Integer,V>> |
AbstractInt2ObjectSortedMap.entrySet() |
ObjectSortedSet<Int2ObjectMap.Entry<V>> |
Int2ObjectSortedMaps.EmptySortedMap.int2ObjectEntrySet() |
ObjectSortedSet<Int2ObjectMap.Entry<V>> |
Int2ObjectSortedMaps.Singleton.int2ObjectEntrySet() |
ObjectSortedSet<Int2ObjectMap.Entry<V>> |
Int2ObjectSortedMaps.SynchronizedSortedMap.int2ObjectEntrySet() |
ObjectSortedSet<Int2ObjectMap.Entry<V>> |
Int2ObjectSortedMaps.UnmodifiableSortedMap.int2ObjectEntrySet() |
ObjectSortedSet<Int2ObjectMap.Entry<V>> |
Int2ObjectSortedMap.int2ObjectEntrySet()
Returns a type-specific sorted-set view of the mappings contained in this map.
|
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Long2ObjectSortedMap.FastSortedEntrySet<V>
A sorted entry set providing fast iteration.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectSortedSet<Map.Entry<Long,V>> |
Long2ObjectSortedMaps.EmptySortedMap.entrySet() |
ObjectSortedSet<Map.Entry<Long,V>> |
Long2ObjectSortedMaps.Singleton.entrySet() |
ObjectSortedSet<Map.Entry<Long,V>> |
Long2ObjectSortedMaps.SynchronizedSortedMap.entrySet() |
ObjectSortedSet<Map.Entry<Long,V>> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.entrySet() |
ObjectSortedSet<Map.Entry<Long,V>> |
Long2ObjectSortedMap.entrySet()
Returns a sorted-set view of the mappings contained in this map.
|
ObjectSortedSet<Map.Entry<Long,V>> |
AbstractLong2ObjectSortedMap.entrySet() |
ObjectSortedSet<Long2ObjectMap.Entry<V>> |
Long2ObjectSortedMaps.EmptySortedMap.long2ObjectEntrySet() |
ObjectSortedSet<Long2ObjectMap.Entry<V>> |
Long2ObjectSortedMaps.Singleton.long2ObjectEntrySet() |
ObjectSortedSet<Long2ObjectMap.Entry<V>> |
Long2ObjectSortedMaps.SynchronizedSortedMap.long2ObjectEntrySet() |
ObjectSortedSet<Long2ObjectMap.Entry<V>> |
Long2ObjectSortedMaps.UnmodifiableSortedMap.long2ObjectEntrySet() |
ObjectSortedSet<Long2ObjectMap.Entry<V>> |
Long2ObjectSortedMap.long2ObjectEntrySet()
Returns a type-specific sorted-set view of the mappings contained in this map.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractObjectSortedSet<K>
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
|
static class |
ObjectSortedSets.EmptySet<K>
An immutable class representing the empty sorted set and implementing a type-specific set interface.
|
static class |
ObjectSortedSets.Singleton<K>
A class representing a singleton sorted set.
|
static class |
ObjectSortedSets.SynchronizedSortedSet<K>
A synchronized wrapper class for sorted sets.
|
static class |
ObjectSortedSets.UnmodifiableSortedSet<K>
An unmodifiable wrapper class for sorted sets.
|
| Modifier and Type | Field and Description |
|---|---|
protected ObjectSortedSet<K> |
ObjectSortedSets.SynchronizedSortedSet.sortedSet |
protected ObjectSortedSet<K> |
ObjectSortedSets.UnmodifiableSortedSet.sortedSet |
| Modifier and Type | Method and Description |
|---|---|
ObjectSortedSet<K> |
ObjectSortedSets.EmptySet.headSet(K from) |
ObjectSortedSet<K> |
ObjectSortedSets.Singleton.headSet(K to) |
ObjectSortedSet<K> |
ObjectSortedSets.SynchronizedSortedSet.headSet(K to) |
ObjectSortedSet<K> |
ObjectSortedSets.UnmodifiableSortedSet.headSet(K to) |
ObjectSortedSet<K> |
ObjectSortedSet.headSet(K toElement)
Returns a view of the portion of this sorted set whose elements are strictly less than
toElement. |
static <K> ObjectSortedSet<K> |
ObjectSortedSets.singleton(K element)
Returns a type-specific immutable sorted set containing only the specified element.
|
static <K> ObjectSortedSet<K> |
ObjectSortedSets.singleton(K element,
Comparator<? super K> comparator)
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator.
|
ObjectSortedSet<K> |
ObjectSortedSets.EmptySet.subSet(K from,
K to) |
ObjectSortedSet<K> |
ObjectSortedSets.Singleton.subSet(K from,
K to) |
ObjectSortedSet<K> |
ObjectSortedSets.SynchronizedSortedSet.subSet(K from,
K to) |
ObjectSortedSet<K> |
ObjectSortedSets.UnmodifiableSortedSet.subSet(K from,
K to) |
ObjectSortedSet<K> |
ObjectSortedSet.subSet(K fromElement,
K toElement)
Returns a view of the portion of this sorted set whose elements range from
fromElement, inclusive, to toElement, exclusive. |
static <K> ObjectSortedSet<K> |
ObjectSortedSets.synchronize(ObjectSortedSet<K> s)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set.
|
static <K> ObjectSortedSet<K> |
ObjectSortedSets.synchronize(ObjectSortedSet<K> s,
Object sync)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set, using an assigned object to synchronize.
|
ObjectSortedSet<K> |
ObjectSortedSets.EmptySet.tailSet(K to) |
ObjectSortedSet<K> |
ObjectSortedSets.Singleton.tailSet(K from) |
ObjectSortedSet<K> |
ObjectSortedSets.SynchronizedSortedSet.tailSet(K from) |
ObjectSortedSet<K> |
ObjectSortedSets.UnmodifiableSortedSet.tailSet(K from) |
ObjectSortedSet<K> |
ObjectSortedSet.tailSet(K fromElement)
Returns a view of the portion of this sorted set whose elements are greater than or equal to
fromElement. |
static <K> ObjectSortedSet<K> |
ObjectSortedSets.unmodifiable(ObjectSortedSet<K> s)
Returns an unmodifiable type-specific sorted set backed by the given type-specific sorted set.
|
| Modifier and Type | Method and Description |
|---|---|
static <K> ObjectSortedSet<K> |
ObjectSortedSets.synchronize(ObjectSortedSet<K> s)
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set.
|
static <K> ObjectSortedSet<K> |
ObjectSortedSets.synchronize(ObjectSortedSet<K> 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 <K> ObjectSortedSet<K> |
ObjectSortedSets.unmodifiable(ObjectSortedSet<K> s)
Returns an unmodifiable type-specific sorted set backed by the given type-specific sorted set.
|
| Constructor and Description |
|---|
SynchronizedSortedSet(ObjectSortedSet<K> s) |
SynchronizedSortedSet(ObjectSortedSet<K> s,
Object sync) |
UnmodifiableSortedSet(ObjectSortedSet<K> s) |
Copyright © 2016. All rights reserved.