Module com.carrotsearch.hppc
Package com.carrotsearch.hppc
Interface IntObjectAssociativeContainer<VType>
- All Superinterfaces:
Iterable<IntObjectCursor<VType>>
- All Known Subinterfaces:
IntObjectMap<VType>
- All Known Implementing Classes:
IntObjectHashMap
,SortedIterationIntObjectHashMap
@Generated(date="2024-06-04T15:20:17+0200",
value="KTypeVTypeAssociativeContainer.java")
public interface IntObjectAssociativeContainer<VType>
extends Iterable<IntObjectCursor<VType>>
An associative container from keys to (one or possibly more) values.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
containsKey
(int key) Returnstrue
if this container has an association to a value for the given key.<T extends IntObjectProcedure<? super VType>>
TforEach
(T procedure) Applies a given procedure to all keys-value pairs in this container.boolean
isEmpty()
iterator()
Returns a cursor over the entries (key-value pairs) in this map.keys()
Returns a collection of keys of this container.int
removeAll
(IntContainer container) Removes all keys (and associated values) present in a given container.int
removeAll
(IntObjectPredicate<? super VType> predicate) Removes all keys (and associated values) for which the predicate returnstrue
.int
removeAll
(IntPredicate predicate) Removes all keys (and associated values) for which the predicate returnstrue
.int
size()
values()
Returns a container view of all values present in this container.Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
iterator
Iterator<IntObjectCursor<VType>> iterator()Returns a cursor over the entries (key-value pairs) in this map. The iterator is implemented as a cursor and it returns the same cursor instance on every call toIterator.next()
. To read the current key and value use the cursor's public fields. An example is shown below.for (IntShortCursor c : intShortMap) { System.out.println("index=" + c.index + " key=" + c.key + " value=" + c.value); }
The
index
field inside the cursor gives the internal index inside the container's implementation. The interpretation of this index depends on to the container. -
containsKey
boolean containsKey(int key) Returnstrue
if this container has an association to a value for the given key. -
size
int size()- Returns:
- Returns the current size (number of assigned keys) in the container.
-
isEmpty
boolean isEmpty()- Returns:
- Return
true
if this hash map contains no assigned keys.
-
removeAll
Removes all keys (and associated values) present in a given container. An alias to:keys().removeAll(container)
but with no additional overhead.- Returns:
- Returns the number of elements actually removed as a result of this call.
-
removeAll
Removes all keys (and associated values) for which the predicate returnstrue
.- Returns:
- Returns the number of elements actually removed as a result of this call.
-
removeAll
Removes all keys (and associated values) for which the predicate returnstrue
.- Returns:
- Returns the number of elements actually removed as a result of this call.
-
forEach
Applies a given procedure to all keys-value pairs in this container. Returns the argument (any subclass ofIntObjectProcedure
. This lets the caller call methods of the argument by chaining the call (even if the argument is an anonymous type) to retrieve computed values. -
forEach
Applies a given predicate to all keys-value pairs in this container. Returns the argument (any subclass ofIntObjectPredicate
. This lets the caller call methods of the argument by chaining the call (even if the argument is an anonymous type) to retrieve computed values.The iteration is continued as long as the predicate returns
true
. -
keys
IntCollection keys()Returns a collection of keys of this container. The returned collection is a view over the key set and any modifications (if allowed) introduced to the collection will propagate to the associative container immediately. -
values
ObjectContainer<VType> values()Returns a container view of all values present in this container. The returned collection is a view over the key set and any modifications (if allowed) introduced to the collection will propagate to the associative container immediately.
-