@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-31T18:37:01.155Z") public enum SplitType extends java.lang.Enum<SplitType>
Enum Constant and Description |
---|
LINE
Split records on a newline character boundary.
|
NONE
Input data files are not split,.
|
RECORD_IO
Split using MXNet RecordIO format.
|
TF_RECORD
Split using TensorFlow TFRecord format.
|
Modifier and Type | Method and Description |
---|---|
static SplitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SplitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitType NONE
public static final SplitType LINE
public static final SplitType RECORD_IO
public static final SplitType TF_RECORD
public static SplitType[] values()
for (SplitType c : SplitType.values()) System.out.println(c);
public static SplitType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null