public static enum TableStat.Mode extends Enum<TableStat.Mode>
Enum Constant and Description |
---|
Alter |
CreateIndex |
Delete |
Drop |
DropIndex |
Insert |
Merge |
Replace |
Select |
Truncate |
Update |
Modifier and Type | Field and Description |
---|---|
int |
mark |
Modifier and Type | Method and Description |
---|---|
static TableStat.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableStat.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableStat.Mode Insert
public static final TableStat.Mode Update
public static final TableStat.Mode Delete
public static final TableStat.Mode Select
public static final TableStat.Mode Merge
public static final TableStat.Mode Truncate
public static final TableStat.Mode Alter
public static final TableStat.Mode Drop
public static final TableStat.Mode DropIndex
public static final TableStat.Mode CreateIndex
public static final TableStat.Mode Replace
public static TableStat.Mode[] values()
for (TableStat.Mode c : TableStat.Mode.values()) System.out.println(c);
public static TableStat.Mode 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 nullCopyright © 2013–2017 Alibaba Group. All rights reserved.