FileDocCategorySizeDatePackage
InternalBindingKey.javaAPI DocJava SE 6 API3273Tue Jun 10 00:21:38 BST 2008com.sun.corba.se.impl.naming.pcosnaming

InternalBindingKey

public class InternalBindingKey extends Object implements Serializable
Class InternalBindingKey implements the necessary wrapper code around the org.omg.CosNaming::NameComponent class to implement the proper equals() method and the hashCode() method for use in a hash table. It computes the hashCode once and stores it, and also precomputes the lengths of the id and kind strings for faster comparison.

Fields Summary
private static final long
serialVersionUID
public String
id
public String
kind
Constructors Summary
public InternalBindingKey()


    // Default Constructor
      
public InternalBindingKey(org.omg.CosNaming.NameComponent n)

	setup(n);
    
Methods Summary
public booleanequals(java.lang.Object o)

	if (o == null)
	    return false;
	if (o instanceof InternalBindingKey) {
	    InternalBindingKey that = (InternalBindingKey)o;
	    if( this.id != null && that.id != null )
	    {
	    	if (this.id.length() != that.id.length() )
		{
			return false;
		}
	    	// If id is set is must be equal
	    	if (this.id.length() > 0 && this.id.equals(that.id) == false) 
		{
			return false;
	    	}
	    }
	    else
	    {
		// If One is Null and the other is not then it's a mismatch
		// So, return false
		if( ( this.id == null && that.id != null )
		||  ( this.id !=null && that.id == null ) )
		{
			return false;
		}
	    }
	    if( this.kind != null && that.kind != null )
	    {
	    	if (this.kind.length() != that.kind.length() )
		{
			return false;
		}
	    	// If kind is set it must be equal
	    	if (this.kind.length() > 0 && this.kind.equals(that.kind) == false) 
		{
			return false;
	    	}
	    }
	    else
	    {
		// If One is Null and the other is not then it's a mismatch
		// So, return false
		if( ( this.kind == null && that.kind != null )
		||  ( this.kind !=null && that.kind == null ) )
		{
			return false;
		}
	    }
	    // We have checked all the possibilities, so return true
	    return true;
	} else {
	    return false;
	}
    
public inthashCode()

	int hashVal = 0;
	if (this.id.length() > 0)
	{
	    hashVal += this.id.hashCode();
	}
	if (this.kind.length() > 0)
	{
	    hashVal += this.kind.hashCode();
	}
	return hashVal;
    
protected voidsetup(org.omg.CosNaming.NameComponent n)

	this.id = n.id;
	this.kind = n.kind;