- clear() - Method in interface org.graalvm.collections.EconomicMap
-
Removes all of the mappings from this map.
- clear() - Method in class org.graalvm.collections.EconomicMapWrap
-
- clear() - Method in interface org.graalvm.collections.EconomicSet
-
Removes all of the elements from this set.
- contains(E) - Method in interface org.graalvm.collections.UnmodifiableEconomicSet
-
Returns true if this set contains a mapping for the element.
- containsKey(K) - Method in class org.graalvm.collections.EconomicMapWrap
-
- containsKey(K) - Method in interface org.graalvm.collections.UnmodifiableEconomicMap
-
Returns true if this map contains a mapping for key.
- create() - Static method in interface org.graalvm.collections.EconomicMap
-
Creates a new map that guarantees insertion order on the key set with the default
Equivalence.DEFAULT comparison strategy for keys.
- create(int) - Static method in interface org.graalvm.collections.EconomicMap
-
Creates a new map that guarantees insertion order on the key set with the default
Equivalence.DEFAULT comparison strategy for keys and initializes with a specified
capacity.
- create(Equivalence) - Static method in interface org.graalvm.collections.EconomicMap
-
Creates a new map that guarantees insertion order on the key set with the given comparison
strategy for keys.
- create(UnmodifiableEconomicMap<K, V>) - Static method in interface org.graalvm.collections.EconomicMap
-
Creates a new map that guarantees insertion order on the key set with the default
Equivalence.DEFAULT comparison strategy for keys and copies all elements from the
specified existing map.
- create(Equivalence, UnmodifiableEconomicMap<K, V>) - Static method in interface org.graalvm.collections.EconomicMap
-
Creates a new map that guarantees insertion order on the key set and copies all elements from
the specified existing map.
- create(Equivalence, int) - Static method in interface org.graalvm.collections.EconomicMap
-
Creates a new map that guarantees insertion order on the key set and initializes with a
specified capacity.
- create() - Static method in interface org.graalvm.collections.EconomicSet
-
Creates a new set guaranteeing insertion order when iterating over its elements with the
default
Equivalence.DEFAULT comparison strategy.
- create(Equivalence) - Static method in interface org.graalvm.collections.EconomicSet
-
Creates a new set guaranteeing insertion order when iterating over its elements.
- create(int) - Static method in interface org.graalvm.collections.EconomicSet
-
Creates a new set guaranteeing insertion order when iterating over its elements with the
default
Equivalence.DEFAULT comparison strategy and inserts all elements of the
specified collection.
- create(UnmodifiableEconomicSet<E>) - Static method in interface org.graalvm.collections.EconomicSet
-
Creates a new set guaranteeing insertion order when iterating over its elements with the
default
Equivalence.DEFAULT comparison strategy and inserts all elements of the
specified collection.
- create(Equivalence, int) - Static method in interface org.graalvm.collections.EconomicSet
-
Creates a new set guaranteeing insertion order when iterating over its elements and
initializes with the given capacity.
- create(Equivalence, UnmodifiableEconomicSet<E>) - Static method in interface org.graalvm.collections.EconomicSet
-
Creates a new set guaranteeing insertion order when iterating over its elements and inserts
all elements of the specified collection.
- create(L, R) - Static method in class org.graalvm.collections.Pair
-
Constructs a pair with its left value being left, and its right value being
right, or returns an empty pair if both inputs are null.
- createLeft(L) - Static method in class org.graalvm.collections.Pair
-
Constructs a pair with its left value being left, or returns an empty pair if
left is null.
- createRight(R) - Static method in class org.graalvm.collections.Pair
-
Constructs a pair with its right value being right, or returns an empty pair if
right is null.