Uses of Interface
com.carrotsearch.hppc.CharContainer
-
Packages that use CharContainer Package Description com.carrotsearch.hppc -
-
Uses of CharContainer in com.carrotsearch.hppc
Subinterfaces of CharContainer in com.carrotsearch.hppc Modifier and Type Interface Description interfaceCharCollectionA collection allows basic, efficient operations on sets of elements (difference and intersection).interfaceCharDequeA linear collection that supports element insertion and removal at both ends.interfaceCharIndexedContainerAn indexed container provides random access to elements based on anindex.interfaceCharLookupContainerMarker 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).interfaceCharSetA set ofchars.Classes in com.carrotsearch.hppc that implement CharContainer Modifier and Type Class Description (package private) classAbstractCharCollectionCommon superclass for collections.private classByteCharHashMap.ValuesContainerA view over the set of values of this map.classCharArrayDequeAn array-backedCharDeque.classCharArrayListAn array-backed list of chars.classCharByteHashMap.KeysContainerA view of the keys inside this hash map.classCharCharHashMap.KeysContainerA view of the keys inside this hash map.private classCharCharHashMap.ValuesContainerA view over the set of values of this map.classCharDoubleHashMap.KeysContainerA view of the keys inside this hash map.classCharFloatHashMap.KeysContainerA view of the keys inside this hash map.classCharHashSetA hash set ofchars, implemented using using open addressing with linear probing for collision resolution.classCharIntHashMap.KeysContainerA view of the keys inside this hash map.classCharLongHashMap.KeysContainerA view of the keys inside this hash map.classCharObjectHashMap.KeysContainerA view of the keys inside this hash map.classCharScatterSetSame asCharHashSetbut does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.classCharShortHashMap.KeysContainerA view of the keys inside this hash map.classCharStackA subclass ofCharArrayListadding stack-related utility methods.private classDoubleCharHashMap.ValuesContainerA view over the set of values of this map.private classFloatCharHashMap.ValuesContainerA view over the set of values of this map.private classIntCharHashMap.ValuesContainerA view over the set of values of this map.private classLongCharHashMap.ValuesContainerA view over the set of values of this map.private classObjectCharHashMap.ValuesContainerA view over the set of values of this map.private classShortCharHashMap.ValuesContainerA view over the set of values of this map.Methods in com.carrotsearch.hppc that return CharContainer Modifier and Type Method Description CharContainerByteCharAssociativeContainer. values()Returns a container view of all values present in this container.CharContainerCharCharAssociativeContainer. values()Returns a container view of all values present in this container.CharContainerDoubleCharAssociativeContainer. values()Returns a container view of all values present in this container.CharContainerFloatCharAssociativeContainer. values()Returns a container view of all values present in this container.CharContainerIntCharAssociativeContainer. values()Returns a container view of all values present in this container.CharContainerLongCharAssociativeContainer. values()Returns a container view of all values present in this container.CharContainerObjectCharAssociativeContainer. values()Returns a container view of all values present in this container.CharContainerShortCharAssociativeContainer. values()Returns a container view of all values present in this container.Methods in com.carrotsearch.hppc with parameters of type CharContainer Modifier and Type Method Description intCharArrayList. addAll(CharContainer container)Adds all elements from another container.intCharHashSet. addAll(CharContainer container)Adds all elements from the givenCharContainerto this set.intCharArrayDeque. addFirst(CharContainer container)Inserts all elements from the given container to the front of this deque.intCharArrayDeque. addLast(CharContainer container)Inserts all elements from the given container to the end of this deque.intCharStack. pushAll(CharContainer container)Pushes all elements from another container to the top of the stack.intCharByteAssociativeContainer. removeAll(CharContainer container)Removes all keys (and associated values) present in a given container.intCharByteHashMap. removeAll(CharContainer other)Removes all keys (and associated values) present in a given container.intCharCharAssociativeContainer. removeAll(CharContainer container)Removes all keys (and associated values) present in a given container.intCharCharHashMap. removeAll(CharContainer other)Removes all keys (and associated values) present in a given container.intCharDoubleAssociativeContainer. removeAll(CharContainer container)Removes all keys (and associated values) present in a given container.intCharDoubleHashMap. removeAll(CharContainer other)Removes all keys (and associated values) present in a given container.intCharFloatAssociativeContainer. removeAll(CharContainer container)Removes all keys (and associated values) present in a given container.intCharFloatHashMap. removeAll(CharContainer other)Removes all keys (and associated values) present in a given container.intCharIntAssociativeContainer. removeAll(CharContainer container)Removes all keys (and associated values) present in a given container.intCharIntHashMap. removeAll(CharContainer other)Removes all keys (and associated values) present in a given container.intCharLongAssociativeContainer. removeAll(CharContainer container)Removes all keys (and associated values) present in a given container.intCharLongHashMap. removeAll(CharContainer other)Removes all keys (and associated values) present in a given container.intCharObjectAssociativeContainer. removeAll(CharContainer container)Removes all keys (and associated values) present in a given container.intCharObjectHashMap. removeAll(CharContainer other)Removes all keys (and associated values) present in a given container.intCharShortAssociativeContainer. removeAll(CharContainer container)Removes all keys (and associated values) present in a given container.intCharShortHashMap. removeAll(CharContainer other)Removes all keys (and associated values) present in a given container.Constructors in com.carrotsearch.hppc with parameters of type CharContainer Constructor Description CharArrayDeque(CharContainer container)Creates a new deque from elements of another container, appending elements at the end of the deque in the iteration order.CharArrayList(CharContainer container)Creates a new list from the elements of another container in its iteration order.CharHashSet(CharContainer container)New instance copying elements from anotherCharContainer.CharStack(CharContainer container)Create a stack by pushing all elements of another container to it.
-