The hashCode() method of a javax.naming.CompoundName class is used to return the hash code of this compound name. The hash code of this compound name object is the sum of the hash codes of the “canonicalized” forms of individual components of this compound name.
Syntax:
public int hashCode()
Parameters: This method accepts nothing.
Return value: This method returns an int representing the hash code of this name.
Below programs illustrate the CompoundName.hashCode() method:
Program 1:
| // Java program to demonstrate// CompoundName.hashCode() importjava.util.Properties;importjavax.naming.CompoundName;importjavax.naming.InvalidNameException; publicclassGFG {    publicstaticvoidmain(String[] args)        throwsInvalidNameException    {         // need properties for CompoundName        Properties props = newProperties();        props.put("jndi.syntax.separator", ":");        props.put("jndi.syntax.direction",                  "left_to_right");         // create compound name object        CompoundName CompoundName1            = newCompoundName(                "a:b:z:y:x", props);         // apply hashCode()        inthashCode            = CompoundName1.hashCode();         // print value        System.out.println("hashCode:"                           + hashCode);    }} | 
hashCode:558
Program 2:
| // Java program to demonstrate// CompoundName.hashCode() method importjava.util.Properties;importjavax.naming.CompoundName;importjavax.naming.InvalidNameException; publicclassGFG {    publicstaticvoidmain(String[] args)        throwsInvalidNameException    {         // need properties for CompoundName        Properties props = newProperties();        props.put("jndi.syntax.separator", "/");        props.put("jndi.syntax.direction",                  "left_to_right");         // create compound name object        CompoundName CompoundName1            = newCompoundName(                "c/e/d/v/a/b/z/y/x/f",                props);         // apply hashCode()        inthashCode            = CompoundName1.hashCode();         // print value        System.out.println("hashCode:"                           + hashCode);    }} | 
hashCode:1078
References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompoundName.html#hashCode()


 
                                    







