public enum TrainingDatasetType extends Enum<TrainingDatasetType>
Enum Constant and Description |
---|
EXTERNAL_TRAINING_DATASET |
HOPSFS_TRAINING_DATASET |
IN_MEMORY_TRAINING_DATASET |
Modifier and Type | Method and Description |
---|---|
static TrainingDatasetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrainingDatasetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrainingDatasetType HOPSFS_TRAINING_DATASET
public static final TrainingDatasetType EXTERNAL_TRAINING_DATASET
public static final TrainingDatasetType IN_MEMORY_TRAINING_DATASET
public static TrainingDatasetType[] values()
for (TrainingDatasetType c : TrainingDatasetType.values()) System.out.println(c);
public static TrainingDatasetType 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 © 2023. All rights reserved.