public enum DBCBType extends Enum<DBCBType>
Modifier and Type | Method and Description |
---|---|
int |
getValue()
get integer value for enum
|
static DBCBType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBCBType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBCBType ACTIVATE_CHECKPOINT_RUNNING
DpDbCallback.activateCheckpointRunning(DpDbContext)
method.public static final DBCBType ADD_CHECKPOINT_RUNNING
DpDbCallback.addCheckpointRunning(DpDbContext)
method.public static final DBCBType CANDIDATE_CHK_NOT_MODIFIED
DpDbCallback.candidateChkNotModified(DpDbContext)
method.public static final DBCBType CANDIDATE_COMMIT
DpDbCallback.candidateCommit(DpDbContext,int)
method.public static final DBCBType CANDIDATE_CONFIRMING_COMMIT
DpDbCallback.candidateConfirmingCommit(DpDbContext)
method.public static final DBCBType CANDIDATE_RESET
DpDbCallback.candidateReset(DpDbContext)
method.public static final DBCBType CANDIDATE_ROLLBACK_RUNNING
DpDbCallback.candidateRollbackRunning(DpDbContext)
method.public static final DBCBType CANDIDATE_VALIDATE
DpDbCallback.candidateValidate(DpDbContext)
method.public static final DBCBType COPY_RUNNING_TO_STARTUP
DpDbCallback.copyRunningToStartup(DpDbContext)
method.public static final DBCBType DEL_CHECKPOINT_RUNNING
DpDbCallback.delCheckpointRunning(DpDbContext)
method.public static final DBCBType DELETE_CONFIG
DpDbCallback.deleteConfig(DpDbContext,int)
method.public static final DBCBType LOCK
DpDbCallback.lock(DpDbContext,int)
method.public static final DBCBType LOCK_PARTIAL
DpDbCallback.lockPartial(DpDbContext,int,int,ConfObject[][])
method.public static final DBCBType RUNNING_CHK_NOT_MODIFIED
DpDbCallback.runningChkNotModified(DpDbContext)
method.public static final DBCBType UNLOCK
DpDbCallback.unlock(DpDbContext,int)
method.public static final DBCBType UNLOCK_PARTIAL
DpDbCallback.unlockPartial(DpDbContext,int,int)
method.public int getValue()
public static DBCBType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static DBCBType[] values()
for (DBCBType c : DBCBType.values()) System.out.println(c);