public enum OutlierTreatmentMethod extends Enum<OutlierTreatmentMethod> implements StringValue<OutlierTreatmentMethod>
| Enum Constant and Description |
|---|
AS_EXTREME_VALUES |
AS_IS |
AS_MISSING_VALUES |
| Modifier and Type | Method and Description |
|---|---|
static OutlierTreatmentMethod |
fromValue(String v) |
String |
toString() |
String |
value() |
static OutlierTreatmentMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutlierTreatmentMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutlierTreatmentMethod AS_IS
public static final OutlierTreatmentMethod AS_MISSING_VALUES
public static final OutlierTreatmentMethod AS_EXTREME_VALUES
public static OutlierTreatmentMethod[] values()
for (OutlierTreatmentMethod c : OutlierTreatmentMethod.values()) System.out.println(c);
public static OutlierTreatmentMethod 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 value()
value in interface StringValue<OutlierTreatmentMethod>public static OutlierTreatmentMethod fromValue(String v)
public String toString()
toString in class Enum<OutlierTreatmentMethod>Copyright © 2022. All rights reserved.