Uses of Interface
gnu.trove.TByteProcedure

Packages that use TByteProcedure
gnu.trove   
 

Uses of TByteProcedure in gnu.trove
 

Classes in gnu.trove that implement TByteProcedure
(package private)  class SerializationProcedure
          Implementation of the variously typed procedure interfaces that supports writing the arguments to the procedure out on an ObjectOutputStream.
private  class TByteHashSet.HashProcedure
           
 

Methods in gnu.trove with parameters of type TByteProcedure
 boolean TShortByteHashMap.forEachValue(TByteProcedure procedure)
          Executes procedure for each value in the map.
 boolean TObjectByteHashMap.forEachValue(TByteProcedure procedure)
          Executes procedure for each value in the map.
 boolean TLongByteHashMap.forEachValue(TByteProcedure procedure)
          Executes procedure for each value in the map.
 boolean TIntByteHashMap.forEachValue(TByteProcedure procedure)
          Executes procedure for each value in the map.
 boolean TFloatByteHashMap.forEachValue(TByteProcedure procedure)
          Executes procedure for each value in the map.
 boolean TDoubleByteHashMap.forEachValue(TByteProcedure procedure)
          Executes procedure for each value in the map.
 boolean TByteShortHashMap.forEachKey(TByteProcedure procedure)
          Executes procedure for each key in the map.
 boolean TByteObjectHashMap.forEachKey(TByteProcedure procedure)
          Executes procedure for each key in the map.
 boolean TByteLongHashMap.forEachKey(TByteProcedure procedure)
          Executes procedure for each key in the map.
 boolean TByteIntHashMap.forEachKey(TByteProcedure procedure)
          Executes procedure for each key in the map.
 boolean TByteHash.forEach(TByteProcedure procedure)
          Executes procedure for each element in the set.
 boolean TByteFloatHashMap.forEachKey(TByteProcedure procedure)
          Executes procedure for each key in the map.
 boolean TByteDoubleHashMap.forEachKey(TByteProcedure procedure)
          Executes procedure for each key in the map.
 boolean TByteByteHashMap.forEachKey(TByteProcedure procedure)
          Executes procedure for each key in the map.
 boolean TByteByteHashMap.forEachValue(TByteProcedure procedure)
          Executes procedure for each value in the map.
 boolean TByteArrayList.forEach(TByteProcedure procedure)
          Applies the procedure to each value in the list in ascending (front to back) order.
 boolean TByteArrayList.forEachDescending(TByteProcedure procedure)
          Applies the procedure to each value in the list in descending (back to front) order.
 TByteArrayList TByteArrayList.grep(TByteProcedure condition)
          Searches the list for values satisfying condition in the manner of the *nix grep utility.
 TByteArrayList TByteArrayList.inverseGrep(TByteProcedure condition)
          Searches the list for values which do not satisfy condition.