Uses of Interface
com.carrotsearch.hppc.ObjectCollection

Packages that use ObjectCollection
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 ObjectCollection in com.carrotsearch.hppc
 

Subinterfaces of ObjectCollection in com.carrotsearch.hppc
 interface ObjectDeque<KType>
          A double-linked queue of KTypes.
 interface ObjectIndexedContainer<KType>
          An indexed container provides random access to elements based on an index.
 interface ObjectSet<KType>
          A set of KTypes.
 

Classes in com.carrotsearch.hppc that implement ObjectCollection
 class ObjectArrayDeque<KType>
          An array-backed deque (doubly linked queue) of KTypes.
 class ObjectArrayList<KType>
          An array-backed list of KTypes.
 class ObjectByteOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ObjectCharOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ObjectDoubleOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ObjectFloatOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ObjectIntOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ObjectLongOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ObjectObjectOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ObjectOpenHashSet<KType>
          A hash set of KTypes, implemented using using open addressing with linear probing for collision resolution.
 class ObjectShortOpenHashMap.KeysContainer
          A view of the keys inside this hash map.
 class ObjectStack<KType>
          An extension to ObjectArrayList adding stack-related utility methods.
 

Methods in com.carrotsearch.hppc that return ObjectCollection
 ObjectCollection<KType> ObjectByteAssociativeContainer.keys()
          Returns a collection of keys of this container.
 ObjectCollection<KType> ObjectShortAssociativeContainer.keys()
          Returns a collection of keys of this container.
 ObjectCollection<KType> ObjectIntAssociativeContainer.keys()
          Returns a collection of keys of this container.
 ObjectCollection<KType> ObjectLongAssociativeContainer.keys()
          Returns a collection of keys of this container.
 ObjectCollection<KType> ObjectFloatAssociativeContainer.keys()
          Returns a collection of keys of this container.
 ObjectCollection<KType> ObjectDoubleAssociativeContainer.keys()
          Returns a collection of keys of this container.
 ObjectCollection<KType> ObjectObjectAssociativeContainer.keys()
          Returns a collection of keys of this container.
 ObjectCollection<KType> ObjectCharAssociativeContainer.keys()
          Returns a collection of keys of this container.
 



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