Enum OutlierDetection.Method
- java.lang.Object
-
- java.lang.Enum<OutlierDetection.Method>
-
- org.elasticsearch.client.ml.dataframe.OutlierDetection.Method
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OutlierDetection.Method>,java.lang.constant.Constable
- Enclosing class:
- OutlierDetection
public static enum OutlierDetection.Method extends java.lang.Enum<OutlierDetection.Method>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISTANCE_KNNDISTANCE_KTH_NNLDOFLOF
-
Method Summary
Modifier and Type Method Description static OutlierDetection.MethodfromString(java.lang.String value)java.lang.StringtoString()static OutlierDetection.MethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OutlierDetection.Method[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOF
public static final OutlierDetection.Method LOF
-
LDOF
public static final OutlierDetection.Method LDOF
-
DISTANCE_KTH_NN
public static final OutlierDetection.Method DISTANCE_KTH_NN
-
DISTANCE_KNN
public static final OutlierDetection.Method DISTANCE_KNN
-
-
Method Detail
-
values
public static OutlierDetection.Method[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OutlierDetection.Method valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromString
public static OutlierDetection.Method fromString(java.lang.String value)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<OutlierDetection.Method>
-
-