public enum Extrapolation extends Enum<Extrapolation>
sufficient samples
in a window for an entity. The extrapolations are used in the following preference order.
Enum Constant and Description |
---|
AVG_ADJACENT |
AVG_AVAILABLE |
FORCED_INSUFFICIENT |
NO_VALID_EXTRAPOLATION |
NONE |
Modifier and Type | Method and Description |
---|---|
static Extrapolation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Extrapolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Extrapolation NONE
public static final Extrapolation AVG_AVAILABLE
public static final Extrapolation AVG_ADJACENT
public static final Extrapolation FORCED_INSUFFICIENT
public static final Extrapolation NO_VALID_EXTRAPOLATION
public static Extrapolation[] values()
for (Extrapolation c : Extrapolation.values()) System.out.println(c);
public static Extrapolation 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 null