Uses of Interface
com.carrotsearch.hppc.ShortContainer

Packages that use ShortContainer
com.carrotsearch.hppc High Performance Primitive Collections (HPPC) library provides typical data structures (lists, stacks, maps) template-generated for all Java primitive types (byte, int, etc.) to conserve memory and boost performance. 
 

Uses of ShortContainer in com.carrotsearch.hppc
 

Subinterfaces of ShortContainer in com.carrotsearch.hppc
 interface ShortCollection
          A collection allows basic, efficient operations on sets of elements (difference and intersection).
 interface ShortDeque
          A double-linked queue of shorts.
 interface ShortIndexedContainer
          An indexed container provides random access to elements based on an index.
 interface ShortLookupContainer
          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 ShortSet
          A set of shorts.
 

Classes in com.carrotsearch.hppc that implement ShortContainer
 class ShortArrayDeque
          An array-backed deque (doubly linked queue) of shorts.
 class ShortArrayList
          An array-backed list of shorts.
 class ShortByteOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ShortCharOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ShortDoubleOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ShortFloatOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ShortIntOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ShortLongOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ShortObjectOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ShortOpenHashSet
          A hash set of shorts, implemented using using open addressing with linear probing for collision resolution.
 class ShortShortOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ShortStack
          An extension to ObjectArrayList adding stack-related utility methods.
 

Methods in com.carrotsearch.hppc that return ShortContainer
 ShortContainer IntShortAssociativeContainer.values()
          Returns a container view of all values present in this container.
 ShortContainer CharShortOpenHashMap.values()
           
 ShortContainer ObjectShortAssociativeContainer.values()
          Returns a container view of all values present in this container.
 ShortContainer IntShortOpenHashMap.values()
           
 ShortContainer ByteShortAssociativeContainer.values()
          Returns a container view of all values present in this container.
 ShortContainer DoubleShortAssociativeContainer.values()
          Returns a container view of all values present in this container.
 ShortContainer ShortShortOpenHashMap.values()
           
 ShortContainer LongShortOpenHashMap.values()
           
 ShortContainer CharShortAssociativeContainer.values()
          Returns a container view of all values present in this container.
 ShortContainer ObjectShortOpenHashMap.values()
           
 ShortContainer FloatShortOpenHashMap.values()
           
 ShortContainer FloatShortAssociativeContainer.values()
          Returns a container view of all values present in this container.
 ShortContainer ShortShortAssociativeContainer.values()
          Returns a container view of all values present in this container.
 ShortContainer DoubleShortOpenHashMap.values()
           
 ShortContainer LongShortAssociativeContainer.values()
          Returns a container view of all values present in this container.
 ShortContainer ByteShortOpenHashMap.values()
           
 

Methods in com.carrotsearch.hppc with parameters of type ShortContainer
 int ShortArrayList.addAll(ShortContainer container)
          Adds all elements from another container.
 int ShortOpenHashSet.addAll(ShortContainer container)
          Adds all elements from a given container to this set.
 int ShortArrayDeque.addFirst(ShortContainer container)
          Inserts all elements from the given container to the front of this deque.
 int ShortArrayDeque.addLast(ShortContainer container)
          Inserts all elements from the given container to the end of this deque.
static ShortStack ShortStack.from(ShortContainer container)
          Create a stack by pushing all elements of another container to it.
static ShortArrayList ShortArrayList.from(ShortContainer container)
          Create a list from elements of another container.
static ShortOpenHashSet ShortOpenHashSet.from(ShortContainer container)
          Create a set from elements of another container.
 int ShortStack.pushAll(ShortContainer container)
          Pushes all elements from another container to the top of the stack.
 int ShortCharAssociativeContainer.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortByteAssociativeContainer.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortShortOpenHashMap.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortIntOpenHashMap.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortObjectOpenHashMap.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortDoubleOpenHashMap.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortCharOpenHashMap.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortObjectAssociativeContainer.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortDoubleAssociativeContainer.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortFloatAssociativeContainer.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortIntAssociativeContainer.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortLongOpenHashMap.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortShortAssociativeContainer.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortFloatOpenHashMap.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortLongAssociativeContainer.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 int ShortByteOpenHashMap.removeAll(ShortContainer container)
          Removes all keys (and associated values) present in a given container.
 

Constructors in com.carrotsearch.hppc with parameters of type ShortContainer
ShortArrayDeque(ShortContainer container)
          Creates a new deque from elements of another container, appending them at the end of this deque.
ShortArrayList(ShortContainer container)
          Creates a new list from elements of another container.
ShortOpenHashSet(ShortContainer container)
          Creates a hash set from elements of another container.
ShortStack(ShortContainer container)
          Create a stack by pushing all elements of another container to it.
 



Copyright © 2011 Carrot Search s.c.. All Rights Reserved.