public static enum AutoMLProblemTypeConfig.Type extends Enum<AutoMLProblemTypeConfig.Type>
AutoMLProblemTypeConfig.type()| Enum Constant and Description |
|---|
IMAGE_CLASSIFICATION_JOB_CONFIG |
TABULAR_JOB_CONFIG |
TEXT_CLASSIFICATION_JOB_CONFIG |
TIME_SERIES_FORECASTING_JOB_CONFIG |
UNKNOWN_TO_SDK_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static AutoMLProblemTypeConfig.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoMLProblemTypeConfig.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoMLProblemTypeConfig.Type IMAGE_CLASSIFICATION_JOB_CONFIG
public static final AutoMLProblemTypeConfig.Type TEXT_CLASSIFICATION_JOB_CONFIG
public static final AutoMLProblemTypeConfig.Type TABULAR_JOB_CONFIG
public static final AutoMLProblemTypeConfig.Type TIME_SERIES_FORECASTING_JOB_CONFIG
public static final AutoMLProblemTypeConfig.Type UNKNOWN_TO_SDK_VERSION
public static AutoMLProblemTypeConfig.Type[] values()
for (AutoMLProblemTypeConfig.Type c : AutoMLProblemTypeConfig.Type.values()) System.out.println(c);
public static AutoMLProblemTypeConfig.Type 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.