Methods Summary |
---|
public abstract void | delete(java.io.RandomAccessFile file)Removes the specific tag from the file
|
public boolean | equals(java.lang.Object obj)Determines whether another datatype is equal to this tag. It just compares
if they are the same class, then calls super.equals(obj) .
return (obj instanceof AbstractTag) && super.equals(obj);
|
public abstract java.util.Iterator | iterator()
|
public abstract boolean | seek(java.nio.ByteBuffer byteBuffer)Looks for this tag in the buffer
|
public abstract void | write(java.io.RandomAccessFile file)Writes the tag to the file
|