public enum EAlterIndexOption extends Enum<EAlterIndexOption>
Enum Constant and Description |
---|
abort
SQL Server
|
disable
SQL Server
|
pause
SQL Server
|
rebuild
SQL Server, Hive
|
reorganize
SQL Server
|
resume
SQL Server
|
setProperties |
toCluster |
toNotCluster |
unknown |
Modifier and Type | Method and Description |
---|---|
static EAlterIndexOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EAlterIndexOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EAlterIndexOption unknown
public static final EAlterIndexOption toCluster
public static final EAlterIndexOption toNotCluster
public static final EAlterIndexOption rebuild
public static final EAlterIndexOption setProperties
public static final EAlterIndexOption disable
public static final EAlterIndexOption reorganize
public static final EAlterIndexOption resume
public static final EAlterIndexOption pause
public static final EAlterIndexOption abort
public static EAlterIndexOption[] values()
for (EAlterIndexOption c : EAlterIndexOption.values()) System.out.println(c);
public static EAlterIndexOption 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 © 2019. All rights reserved.