public enum SqlJetTransactionState extends java.lang.Enum<SqlJetTransactionState>
Enum Constant and Description |
---|
CHECKPOINT |
NOT_WRITABLE |
TRANSACTION |
Modifier and Type | Method and Description |
---|---|
static SqlJetTransactionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlJetTransactionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJetTransactionState NOT_WRITABLE
public static final SqlJetTransactionState TRANSACTION
public static final SqlJetTransactionState CHECKPOINT
public static SqlJetTransactionState[] values()
for (SqlJetTransactionState c : SqlJetTransactionState.values()) System.out.println(c);
public static SqlJetTransactionState 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 nullCopyright © 2009-2010 TMate Software Ltd. All Rights Reserved.