public enum ThresholdOutput extends java.lang.Enum<ThresholdOutput>
| Enum Constant and Description |
|---|
ABSOLUTE
Return the data as is
|
BINARY
1 if the data exceeded the threshold, -1 if below
|
| Modifier and Type | Method and Description |
|---|---|
static ThresholdOutput |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThresholdOutput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThresholdOutput ABSOLUTE
public static final ThresholdOutput BINARY
public static ThresholdOutput[] values()
for (ThresholdOutput c : ThresholdOutput.values()) System.out.println(c);
public static ThresholdOutput valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null