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