Uses of Interface
com.carrotsearch.hppc.predicates.ObjectPredicate

Packages that use ObjectPredicate
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. 
com.carrotsearch.hppc.predicates Predicates that return a boolean true/ false for a given value. 
 

Uses of ObjectPredicate in com.carrotsearch.hppc
 

Methods in com.carrotsearch.hppc with type parameters of type ObjectPredicate
<T extends ObjectPredicate<? super KType>>
T
ObjectDeque.descendingForEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends ObjectPredicate<? super KType>>
T
ObjectArrayDeque.descendingForEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends ObjectPredicate<? super KType>>
T
ObjectDoubleOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends ObjectPredicate<? super KType>>
T
ObjectIntOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends ObjectPredicate<? super KType>>
T
ObjectByteOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends ObjectPredicate<? super KType>>
T
ObjectArrayDeque.forEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends ObjectPredicate<? super KType>>
T
ObjectLongOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends ObjectPredicate<? super KType>>
T
ObjectShortOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends ObjectPredicate<? super KType>>
T
ObjectCharOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends ObjectPredicate<? super KType>>
T
ObjectContainer.forEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends ObjectPredicate<? super KType>>
T
ObjectFloatOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends ObjectPredicate<? super KType>>
T
ObjectObjectOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends ObjectPredicate<? super KType>>
T
ObjectOpenHashSet.forEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends ObjectPredicate<? super KType>>
T
ObjectArrayList.forEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends ObjectPredicate<? super KType>>
T
ObjectArrayList.forEach(T predicate, int fromIndex, int toIndex)
          Applies predicate to a slice of the list, fromIndex, inclusive, to toIndex, exclusive, or until predicate returns false.
 

Methods in com.carrotsearch.hppc with parameters of type ObjectPredicate
 int ObjectDoubleOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectDoubleOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate)
           
 int ObjectIntOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectIntOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate)
           
 int ObjectByteAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectShortAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectIntAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectByteOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectByteOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate)
           
 int ObjectArrayDeque.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all elements in this collection for which the given predicate returns true.
 int ObjectLongOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectLongOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate)
           
 int ObjectLongAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectShortOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectShortOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate)
           
 int ObjectCharOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectCharOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate)
           
 int ObjectFloatAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectCollection.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all elements in this collection for which the given predicate returns true.
 int ObjectDoubleAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectFloatOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectFloatOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate)
           
 int ObjectObjectOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectObjectOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate)
           
 int ObjectObjectAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectOpenHashSet.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all elements in this collection for which the given predicate returns true.
 int ObjectCharAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int ObjectArrayList.removeAll(ObjectPredicate<? super KType> predicate)
          Removes all elements in this collection for which the given predicate returns true.
 int ObjectCollection.retainAll(ObjectPredicate<? super KType> predicate)
          Keeps all elements in this collection for which the given predicate returns true.
 

Uses of ObjectPredicate in com.carrotsearch.hppc.predicates
 

Classes in com.carrotsearch.hppc.predicates that implement ObjectPredicate
 class GuavaPredicateAdapter<KType>
          An adapter between Guava's Predicate and HPPC's ObjectPredicate.
 



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