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