
public abstract class AbstractLeafEntry extends Object implements LeafEntry
| Modifier and Type | Field and Description |
|---|---|
private DBID |
id
Holds the id of the object (node or data object) represented by this entry.
|
| Modifier | Constructor and Description |
|---|---|
|
AbstractLeafEntry()
Empty constructor for serialization purposes.
|
protected |
AbstractLeafEntry(DBID id)
Provides a new AbstractEntry with the specified id.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o)
Indicates whether some other object is "equal to" this one.
|
DBID |
getDBID()
Get the DBID of this leaf entry.
|
int |
hashCode()
Returns as hash code for the entry its id.
|
boolean |
isLeafEntry()
Returns true if this entry is an entry in a leaf node (i.e. this entry
represents a data object), false otherwise.
|
void |
readExternal(ObjectInput in)
Restores the id of the object (node or data object) that is represented by
this entry from the specified stream.
|
String |
toString()
Returns the id as a string representation of this entry.
|
void |
writeExternal(ObjectOutput out)
Writes the id of the object (node or data object) that is represented by
this entry to the specified stream.
|
private DBID id
public AbstractLeafEntry()
protected AbstractLeafEntry(DBID id)
id - the id of the object (node or data object) represented by this
entry.public final boolean isLeafEntry()
EntryisLeafEntry in interface Entrypublic DBID getDBID()
LeafEntrypublic void writeExternal(ObjectOutput out) throws IOException
writeExternal in interface ExternalizableIOExceptionpublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal in interface ExternalizableClassNotFoundException - If the class for an object being restored
cannot be found.IOExceptionpublic boolean equals(Object o)
public int hashCode()