public static enum TablestoreSplit.SplitType extends Enum<TablestoreSplit.SplitType>
| Enum Constant and Description |
|---|
KeyValue
split for kv
|
SearchIndex
split for search
|
| Modifier and Type | Method and Description |
|---|---|
static TablestoreSplit.SplitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TablestoreSplit.SplitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TablestoreSplit.SplitType KeyValue
public static final TablestoreSplit.SplitType SearchIndex
public static TablestoreSplit.SplitType[] values()
for (TablestoreSplit.SplitType c : TablestoreSplit.SplitType.values()) System.out.println(c);
public static TablestoreSplit.SplitType 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 © 2024. All Rights Reserved.