| Package | Description |
|---|---|
| com.carrotsearch.hppc |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ObjectCollection<KType>
A collection allows basic, efficient operations on sets of elements
(difference and intersection).
|
interface |
ObjectDeque<KType>
A double-linked queue of
KTypes. |
interface |
ObjectIndexedContainer<KType>
An indexed container provides random access to elements based on an
index. |
interface |
ObjectLookupContainer<KType>
Marker interface for containers that can check if they contain a given object in
at least time
O(log n) and ideally in amortized
constant time O(1). |
interface |
ObjectSet<KType>
A set of
KTypes. |
| Modifier and Type | Class and Description |
|---|---|
class |
ObjectArrayDeque<KType>
An array-backed deque (doubly linked queue) of KTypes.
|
class |
ObjectArrayList<KType>
An array-backed list of KTypes.
|
class |
ObjectByteOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ObjectCharOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ObjectDoubleOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ObjectFloatOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ObjectIntOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ObjectLongOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ObjectObjectOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ObjectOpenHashSet<KType>
A hash set of
KTypes, implemented using using open
addressing with linear probing for collision resolution. |
class |
ObjectShortOpenHashMap.KeysContainer
A view of the keys inside this hash map.
|
class |
ObjectStack<KType>
An extension to
ObjectArrayList adding stack-related utility methods. |
| Modifier and Type | Method and Description |
|---|---|
ObjectContainer<VType> |
LongObjectOpenHashMap.values() |
ObjectContainer<VType> |
IntObjectAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ObjectContainer<VType> |
ShortObjectOpenHashMap.values() |
ObjectContainer<VType> |
CharObjectAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ObjectContainer<VType> |
DoubleObjectOpenHashMap.values() |
ObjectContainer<VType> |
IntObjectOpenHashMap.values() |
ObjectContainer<VType> |
ByteObjectOpenHashMap.values() |
ObjectContainer<VType> |
FloatObjectOpenHashMap.values() |
ObjectContainer<VType> |
ShortObjectAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ObjectContainer<VType> |
FloatObjectAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ObjectContainer<VType> |
LongObjectAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ObjectContainer<VType> |
ObjectObjectAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ObjectContainer<VType> |
ByteObjectAssociativeContainer.values()
Returns a container view of all values present in this container.
|
ObjectContainer<VType> |
CharObjectOpenHashMap.values() |
ObjectContainer<VType> |
ObjectObjectOpenHashMap.values() |
ObjectContainer<VType> |
DoubleObjectAssociativeContainer.values()
Returns a container view of all values present in this container.
|
| Modifier and Type | Method and Description |
|---|---|
int |
ObjectArrayList.addAll(ObjectContainer<? extends KType> container)
Adds all elements from another container.
|
int |
ObjectOpenHashSet.addAll(ObjectContainer<? extends KType> container)
Adds all elements from a given container to this set.
|
int |
ObjectArrayDeque.addFirst(ObjectContainer<? extends KType> container)
Inserts all elements from the given container to the front of this deque.
|
int |
ObjectArrayDeque.addLast(ObjectContainer<? extends KType> container)
Inserts all elements from the given container to the end of this deque.
|
static <KType> ObjectArrayList<KType> |
ObjectArrayList.from(ObjectContainer<KType> container)
Create a list from elements of another container.
|
static <KType> ObjectStack<KType> |
ObjectStack.from(ObjectContainer<KType> container)
Create a stack by pushing all elements of another container to it.
|
static <KType> ObjectOpenHashSet<KType> |
ObjectOpenHashSet.from(ObjectContainer<KType> container)
Create a set from elements of another container.
|
int |
ObjectStack.pushAll(ObjectContainer<? extends KType> container)
Pushes all elements from another container to the top of the stack.
|
int |
ObjectCharAssociativeContainer.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectShortOpenHashMap.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectByteAssociativeContainer.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectCharOpenHashMap.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectShortAssociativeContainer.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectIntAssociativeContainer.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectFloatOpenHashMap.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectDoubleAssociativeContainer.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectDoubleOpenHashMap.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectByteOpenHashMap.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectIntOpenHashMap.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectObjectAssociativeContainer.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectLongOpenHashMap.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectFloatAssociativeContainer.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectObjectOpenHashMap.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
int |
ObjectLongAssociativeContainer.removeAll(ObjectContainer<? extends KType> container)
Removes all keys (and associated values) present in a given container.
|
| Constructor and Description |
|---|
ObjectArrayDeque(ObjectContainer<? extends KType> container)
Creates a new deque from elements of another container, appending them
at the end of this deque.
|
ObjectArrayList(ObjectContainer<? extends KType> container)
Creates a new list from elements of another container.
|
ObjectOpenHashSet(ObjectContainer<KType> container)
Creates a hash set from elements of another container.
|
ObjectStack(ObjectContainer<KType> container)
Create a stack by pushing all elements of another container to it.
|
Copyright © 2014 Carrot Search s.c.. All rights reserved.