FileDocCategorySizeDatePackage
LongEntry.javaAPI DocGlassfish v2 API2519Fri May 04 22:32:10 BST 2007com.sun.enterprise.util.collection

LongEntry

public final class LongEntry extends Object
NOT THREAD SAFE: mutable variables

Fields Summary
public final long
key
public Object
object
Constructors Summary
LongEntry(long keyIn, Object objectIn)

		key    = keyIn;
		object = objectIn;
	
Methods Summary
public booleanequals(java.lang.Object object)

		if (object instanceof IntEntry) {
			return ( ((IntEntry) object).key == key );
		}
		return false;
	
public inthashCode()

        return (int)key ^ (int)(key>>32);
    
public java.lang.StringtoString()

		return "key: " + key + "; obj: " + object;