Methods Summary |
---|
public boolean | equals(java.lang.Object obj)Returns true if this datatype and its body equals the argument and its
body. this datatype is equal if and only if they are the same class
if ( this == obj ) return true;
return obj instanceof AbstractTagItem;
|
public abstract java.lang.String | getIdentifier()ID string that usually corresponds to the class name, but can be
displayed to the user. It is not indended to identify each individual
instance.
|
public abstract int | getSize()Return size of this item
|
public boolean | isSubsetOf(java.lang.Object obj)Returns true if this datatype is a subset of the argument. This instance
is a subset if it is the same class as the argument.
return obj instanceof AbstractTagItem;
|
public abstract void | read(java.nio.ByteBuffer byteBuffer)
|