public enum SplitMode extends Enum<SplitMode>
This enum defines the different ways data can be split when reading from a table, such as by size, parallelism, row offset, or bucket.
| Modifier and Type | Class and Description |
|---|---|
static class |
SplitMode.SplitModeDeserializer |
static class |
SplitMode.SplitModeSerializer |
| Enum Constant and Description |
|---|
BUCKET |
PARALLELISM |
ROW_OFFSET |
SIZE |
| Modifier and Type | Method and Description |
|---|---|
static SplitMode |
fromString(String mode) |
String |
toString() |
static SplitMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SplitMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitMode SIZE
public static final SplitMode PARALLELISM
public static final SplitMode ROW_OFFSET
public static final SplitMode BUCKET
public static SplitMode[] values()
for (SplitMode c : SplitMode.values()) System.out.println(c);
public static SplitMode 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 © 2026 Alibaba Cloud Computing. All rights reserved.