gnu.trove
Class TLongIntHashMap.EqProcedure

java.lang.Object
  extended by gnu.trove.TLongIntHashMap.EqProcedure
All Implemented Interfaces:
TLongIntProcedure
Enclosing class:
TLongIntHashMap

private static final class TLongIntHashMap.EqProcedure
extends java.lang.Object
implements TLongIntProcedure


Field Summary
private  TLongIntHashMap _otherMap
           
 
Constructor Summary
TLongIntHashMap.EqProcedure(TLongIntHashMap otherMap)
           
 
Method Summary
private  boolean eq(int v1, int v2)
          Compare two ints for equality.
 boolean execute(long key, int value)
          Executes this procedure.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_otherMap

private final TLongIntHashMap _otherMap
Constructor Detail

TLongIntHashMap.EqProcedure

TLongIntHashMap.EqProcedure(TLongIntHashMap otherMap)
Method Detail

execute

public final boolean execute(long key,
                             int value)
Description copied from interface: TLongIntProcedure
Executes this procedure. A false return value indicates that the application executing this procedure should not invoke this procedure again.

Specified by:
execute in interface TLongIntProcedure
Parameters:
key - an long value
value - an int value
Returns:
true if additional invocations of the procedure are allowed.

eq

private final boolean eq(int v1,
                         int v2)
Compare two ints for equality.