public enum DbOperationType extends java.lang.Enum<DbOperationType> implements Loggable
Enum Constant and Description |
---|
CREATE |
NONE |
REMOVE |
RENAME |
TRUNCATE |
Modifier and Type | Method and Description |
---|---|
void |
dumpLog(java.lang.StringBuffer sb,
boolean verbose)
Write the object into the string buffer for log dumping.
|
int |
getLogSize() |
long |
getTransactionId() |
boolean |
logicalEquals(Loggable other) |
void |
readFromLog(java.nio.ByteBuffer itemBuffer,
byte entryVersion)
Initialize this object from the data in itemBuf.
|
static DbOperationType |
readTypeFromLog(java.nio.ByteBuffer entryBuffer,
byte entryVersion) |
static DbOperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DbOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
void |
writeToLog(java.nio.ByteBuffer logBuffer)
Serialize this object into the buffer.
|
public static final DbOperationType NONE
public static final DbOperationType CREATE
public static final DbOperationType REMOVE
public static final DbOperationType TRUNCATE
public static final DbOperationType RENAME
public static DbOperationType[] values()
for (DbOperationType c : DbOperationType.values()) System.out.println(c);
public static DbOperationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DbOperationType readTypeFromLog(java.nio.ByteBuffer entryBuffer, byte entryVersion)
public int getLogSize()
getLogSize
in interface Loggable
Loggable.getLogSize()
public void writeToLog(java.nio.ByteBuffer logBuffer)
Loggable
writeToLog
in interface Loggable
logBuffer
- is the destination bufferLoggable.writeToLog(java.nio.ByteBuffer)
public void readFromLog(java.nio.ByteBuffer itemBuffer, byte entryVersion)
Loggable
readFromLog
in interface Loggable
Loggable.readFromLog(java.nio.ByteBuffer, byte)
public void dumpLog(java.lang.StringBuffer sb, boolean verbose)
Loggable
dumpLog
in interface Loggable
sb
- destination string bufferverbose
- if true, dump the full, verbose versionLoggable.dumpLog(java.lang.StringBuffer, boolean)
public long getTransactionId()
getTransactionId
in interface Loggable
Loggable.getTransactionId()
public boolean logicalEquals(Loggable other)
logicalEquals
in interface Loggable
Loggable.logicalEquals(com.sleepycat.je.log.Loggable)