Uses of Interface
com.carrotsearch.hppc.ObjectContainer
-
Packages that use ObjectContainer Package Description com.carrotsearch.hppc org.elasticsearch.cluster org.elasticsearch.common.collect org.elasticsearch.discovery.zen -
-
Uses of ObjectContainer in com.carrotsearch.hppc
Subinterfaces of ObjectContainer in com.carrotsearch.hppc Modifier and Type Interface Description interfaceObjectCollection<KType>A collection allows basic, efficient operations on sets of elements (difference and intersection).interfaceObjectIndexedContainer<KType>An indexed container provides random access to elements based on anindex.interfaceObjectLookupContainer<KType>Marker interface for containers that can check if they contain a given object in at least timeO(log n)and ideally in amortized constant timeO(1).interfaceObjectSet<KType>A set ofObjects.Classes in com.carrotsearch.hppc that implement ObjectContainer Modifier and Type Class Description classObjectArrayList<KType>An array-backed list of Objects.classObjectFloatHashMap.KeysContainerA view of the keys inside this hash map.classObjectHashSet<KType>A hash set ofObjects, implemented using using open addressing with linear probing for collision resolution.classObjectIntHashMap.KeysContainerA view of the keys inside this hash map.classObjectLongHashMap.KeysContainerA view of the keys inside this hash map.classObjectObjectHashMap.KeysContainerA view of the keys inside this hash map.Methods in com.carrotsearch.hppc that return ObjectContainer Modifier and Type Method Description ObjectContainer<VType>IntObjectAssociativeContainer. 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.Methods in com.carrotsearch.hppc with parameters of type ObjectContainer Modifier and Type Method Description intObjectArrayList. addAll(ObjectContainer<? extends KType> container)Adds all elements from another container.intObjectHashSet. addAll(ObjectContainer<? extends KType> container)Adds all elements from the givenObjectContainerto this set.intObjectFloatAssociativeContainer. removeAll(ObjectContainer<? super KType> container)Removes all keys (and associated values) present in a given container.intObjectFloatHashMap. removeAll(ObjectContainer<? super KType> other)Removes all keys (and associated values) present in a given container.intObjectIntAssociativeContainer. removeAll(ObjectContainer<? super KType> container)Removes all keys (and associated values) present in a given container.intObjectIntHashMap. removeAll(ObjectContainer<? super KType> other)Removes all keys (and associated values) present in a given container.intObjectLongAssociativeContainer. removeAll(ObjectContainer<? super KType> container)Removes all keys (and associated values) present in a given container.intObjectLongHashMap. removeAll(ObjectContainer<? super KType> other)Removes all keys (and associated values) present in a given container.intObjectObjectAssociativeContainer. removeAll(ObjectContainer<? super KType> container)Removes all keys (and associated values) present in a given container.intObjectObjectHashMap. removeAll(ObjectContainer<? super KType> other)Removes all keys (and associated values) present in a given container.Constructors in com.carrotsearch.hppc with parameters of type ObjectContainer Constructor Description ObjectArrayList(ObjectContainer<? extends KType> container)Creates a new list from the elements of another container in its iteration order.ObjectHashSet(ObjectContainer<? extends KType> container)New instance copying elements from anotherObjectContainer. -
Uses of ObjectContainer in org.elasticsearch.cluster
Methods in org.elasticsearch.cluster with parameters of type ObjectContainer Modifier and Type Method Description static booleanSnapshotsInProgress. completed(ObjectContainer<SnapshotsInProgress.ShardSnapshotStatus> shards)Checks if all shards in the list have completed -
Uses of ObjectContainer in org.elasticsearch.common.collect
Methods in org.elasticsearch.common.collect that return ObjectContainer Modifier and Type Method Description ObjectContainer<VType>ImmutableOpenIntMap.Builder. values()ObjectContainer<VType>ImmutableOpenIntMap. values()ObjectContainer<VType>ImmutableOpenMap.Builder. values()ObjectContainer<VType>ImmutableOpenMap. values()Methods in org.elasticsearch.common.collect with parameters of type ObjectContainer Modifier and Type Method Description intImmutableOpenMap.Builder. removeAll(ObjectContainer<? super KType> container) -
Uses of ObjectContainer in org.elasticsearch.discovery.zen
Methods in org.elasticsearch.discovery.zen with parameters of type ObjectContainer Modifier and Type Method Description DiscoveryNode[]ElectMasterService. nextPossibleMasters(ObjectContainer<DiscoveryNode> nodes, int numberOfPossibleMasters)Returns a list of the next possible masters.
-