public class ChildData<T> extends Object implements Comparable<ChildData>
Modifier and Type | Method and Description |
---|---|
int |
compareTo(ChildData rhs) |
boolean |
equals(Object o) |
byte[] |
getData()
Returns the node data for this child when the cache mode is set to cache data.
|
T |
getNode()
Returns the node for this group member.
|
String |
getPath()
Returns the full path of the this child
|
org.apache.zookeeper.data.Stat |
getStat()
Returns the stat data for this child
|
int |
hashCode() |
String |
toString() |
public int compareTo(ChildData rhs)
compareTo
in interface Comparable<ChildData>
public String getPath()
public org.apache.zookeeper.data.Stat getStat()
public byte[] getData()
Returns the node data for this child when the cache mode is set to cache data.
NOTE: the byte array returned is the raw reference of this instance's field. If you change the values in the array any other callers to this method will see the change.
public T getNode()
Returns the node for this group member.
Apache Camel