public enum TableAccessModeType extends Enum<TableAccessModeType>
Enum Constant and Description |
---|
DB_LOCKED
Constant DB_LOCKED
|
EXCLUSIVE
Constant EXCLUSIVE
|
READ_ONLY
Constant READ_ONLY
|
SHARED
Constant SHARED
|
Modifier and Type | Method and Description |
---|---|
static TableAccessModeType |
fromValue(String value)
Method fromValue.
|
void |
setValue(String value) |
String |
toString()
Method toString.
|
String |
value()
Method value.
|
static TableAccessModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableAccessModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableAccessModeType READ_ONLY
public static final TableAccessModeType SHARED
public static final TableAccessModeType EXCLUSIVE
public static final TableAccessModeType DB_LOCKED
public static TableAccessModeType[] values()
for (TableAccessModeType c : TableAccessModeType.values()) System.out.println(c);
public static TableAccessModeType 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 TableAccessModeType fromValue(String value)
value
- public void setValue(String value)
value
- public String toString()
toString
in class Enum<TableAccessModeType>
public String value()
Copyright © 2022. All rights reserved.