Package com.carrotsearch.hppc
Interface ObjectLookupContainer<KType>
-
- All Superinterfaces:
java.lang.Iterable<ObjectCursor<KType>>
,ObjectContainer<KType>
- All Known Implementing Classes:
ObjectByteHashMap.KeysContainer
,ObjectCharHashMap.KeysContainer
,ObjectDoubleHashMap.KeysContainer
,ObjectFloatHashMap.KeysContainer
,ObjectHashSet
,ObjectIdentityHashSet
,ObjectIntHashMap.KeysContainer
,ObjectLongHashMap.KeysContainer
,ObjectObjectHashMap.KeysContainer
,ObjectScatterSet
,ObjectShortHashMap.KeysContainer
@Generated(date="2021-05-28T03:45:41+0000", value="KTypeLookupContainer.java") public interface ObjectLookupContainer<KType> extends ObjectContainer<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)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
contains(KType e)
Lookup a given element in the container.
-
-
-
Method Detail
-
contains
boolean contains(KType e)
Description copied from interface:ObjectContainer
Lookup a given element in the container. This operation has no speed guarantees (may be linear with respect to the size of this container).- Specified by:
contains
in interfaceObjectContainer<KType>
- Returns:
- Returns
true
if this container has an element equal toe
.
-
-