a class that implements TupleItem MUST be public
-
buildItem(byte[])
- Builds an item from a byte array representation.
-
cloneItem(Object)
- Clone this item from a "source" one.
-
dumpItem()
- Returns a byte array representation for this item; if it is not possible
for the item to do that the method returns null.
-
matchesItem(Object)
- Returns true if this item matches the given one.
dumpItem
public abstract byte[] dumpItem()
- Returns a byte array representation for this item; if it is not possible
for the item to do that the method returns null.
buildItem
public abstract boolean buildItem(byte b[])
- Builds an item from a byte array representation.
cloneItem
public abstract void cloneItem(Object source)
- Clone this item from a "source" one.
matchesItem
public abstract boolean matchesItem(Object match)
- Returns true if this item matches the given one.
All Packages Class Hierarchy This Package Previous Next Index