public enum AlgorithmType extends Enum<AlgorithmType>
Enum Constant and Description |
---|
ANOMALY_DETECTION |
CLASSIFICATION |
CLUSTERING |
DEEPLEARNING |
NUMERICAL_PREDICTION |
Modifier and Type | Method and Description |
---|---|
static AlgorithmType |
getAlgorithmType(String value)
get
AlgorithmType for a given value. |
String |
getValue() |
static AlgorithmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmType CLASSIFICATION
public static final AlgorithmType NUMERICAL_PREDICTION
public static final AlgorithmType CLUSTERING
public static final AlgorithmType ANOMALY_DETECTION
public static final AlgorithmType DEEPLEARNING
public static AlgorithmType[] values()
for (AlgorithmType c : AlgorithmType.values()) System.out.println(c);
public static AlgorithmType 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 nullpublic String getValue()
public static AlgorithmType getAlgorithmType(String value)
AlgorithmType
for a given value.Copyright © 2015 WSO2, Inc.. All Rights Reserved.