Package org.ldaptive.asn1
Class DERPath.Node
- java.lang.Object
-
- org.ldaptive.asn1.DERPath.Node
-
-
Field Summary
Fields Modifier and Type Field Description private intchildIndexIndex of this node.private static intHASH_CODE_SEEDhash code seed.private StringnameName of this node.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)intgetChildIndex()Returns the child index.StringgetName()Returns the name.inthashCode()StringtoString()voidtoString(StringBuilder builder)Appends the string representation of this instance to the given string builder.
-
-
-
Field Detail
-
HASH_CODE_SEED
private static final int HASH_CODE_SEED
hash code seed.- See Also:
- Constant Field Values
-
name
private final String name
Name of this node.
-
childIndex
private final int childIndex
Index of this node.
-
-
Method Detail
-
getName
public String getName()
Returns the name.- Returns:
- name
-
getChildIndex
public int getChildIndex()
Returns the child index.- Returns:
- child index
-
toString
public void toString(StringBuilder builder)
Appends the string representation of this instance to the given string builder.- Parameters:
builder- Builder to hold string representation of this instance.
-
-