Package com.tailf.proto
Class ConfERef
Object
com.tailf.proto.ConfEObject
com.tailf.proto.ConfERef
- All Implemented Interfaces:
Serializable
,Cloneable
Provides a Java representation of E refs. There are two styles of E refs, old
style (one id value) and new style (array of id values). This class manages
both types.
- See Also:
-
Constructor Summary
ConstructorDescriptionConfERef
(ConfInputStream buf) Create an E ref from a stream containing a ref encoded in E external format.Create a new style E ref from its components.Create an old style E ref from its components. -
Method Summary
Modifier and TypeMethodDescriptionclone()
int
creation()
Get the creation number from the ref.void
encode
(ConfOutputStream buf) Convert this ref to the equivalent E external representation.boolean
Determine if two refs are equal.int
hashCode()
int
id()
Get the id number from the ref.int[]
ids()
Get the array of id numbers from the ref.boolean
isNewRef()
Determine whether this is a new style ref.node()
Get the node name from the ref.toString()
Get the string representation of the ref.Methods inherited from class com.tailf.proto.ConfEObject
decode
-
Constructor Details
-
ConfERef
Create an E ref from a stream containing a ref encoded in E external format.- Parameters:
buf
- the stream containing the encoded ref.- Throws:
ConfEDecodeException
- if the buffer does not contain a valid external representation of an E ref.
-
ConfERef
Create an old style E ref from its components.- Parameters:
node
- the nodename.id
- an arbitrary number. Only the low order 18 bits will be used.creation
- another arbitrary number. Only the low order 2 bits will be used.
-
ConfERef
Create a new style E ref from its components.- Parameters:
node
- the nodename.ids
- an array of arbitrary numbers. Only the low order 18 bits of the first number will be used. If the array contains only one number, an old style ref will be written instead. At most three numbers will be read from the array.creation
- another arbitrary number. Only the low order 2 bits will be used.
-
-
Method Details
-
id
public int id()Get the id number from the ref. Old style refs have only one id number. If this is a new style ref, the first id number is returned.- Returns:
- the id number from the ref.
-
ids
public int[] ids()Get the array of id numbers from the ref. If this is an old style ref, the array is of length 1. If this is a new style ref, the array has length 3.- Returns:
- the array of id numbers from the ref.
-
isNewRef
public boolean isNewRef()Determine whether this is a new style ref.- Returns:
- true if this ref is a new style ref, false otherwise.
-
creation
public int creation()Get the creation number from the ref.- Returns:
- the creation number from the ref.
-
node
Get the node name from the ref.- Returns:
- the node name from the ref.
-
toString
Get the string representation of the ref. E refs are printed as #Ref<node.id>- Specified by:
toString
in classConfEObject
- Returns:
- the string representation of the ref.
-
encode
Convert this ref to the equivalent E external representation.- Specified by:
encode
in classConfEObject
- Parameters:
buf
- an output stream to which the encoded ref should be written.
-
equals
Determine if two refs are equal. Refs are equal if their components are equal. New refs and old refs are considered equal if the node, creation and first id number are equal.- Specified by:
equals
in classConfEObject
- Parameters:
o
- the other ref to compare to.- Returns:
- true if the refs are equal, false otherwise.
-
hashCode
public int hashCode() -
clone
- Overrides:
clone
in classConfEObject
-