Package org.ldaptive.asn1
Class DERPath.Node
- java.lang.Object
-
- org.ldaptive.asn1.DERPath.Node
-
-
Field Summary
Fields Modifier and Type Field Description private int
childIndex
Index of this node.private static int
HASH_CODE_SEED
hash code seed.private String
name
Name of this node.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
getChildIndex()
Returns the child index.String
getName()
Returns the name.int
hashCode()
String
toString()
void
toString(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.
-
-