public enum RecommendedIndexType extends Enum<RecommendedIndexType>
Enum Constant and Description |
---|
CLUSTERED
Enum value CLUSTERED.
|
CLUSTERED_COLUMNSTORE
Enum value CLUSTERED COLUMNSTORE.
|
COLUMNSTORE
Enum value COLUMNSTORE.
|
NONCLUSTERED
Enum value NONCLUSTERED.
|
Modifier and Type | Method and Description |
---|---|
static RecommendedIndexType |
fromString(String value)
Parses a serialized value to a RecommendedIndexType instance.
|
String |
toString() |
static RecommendedIndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecommendedIndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecommendedIndexType CLUSTERED
public static final RecommendedIndexType NONCLUSTERED
public static final RecommendedIndexType COLUMNSTORE
public static final RecommendedIndexType CLUSTERED_COLUMNSTORE
public static RecommendedIndexType[] values()
for (RecommendedIndexType c : RecommendedIndexType.values()) System.out.println(c);
public static RecommendedIndexType 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 RecommendedIndexType fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<RecommendedIndexType>
Copyright © 2019. All rights reserved.