public enum DifferentialOutput extends java.lang.Enum<DifferentialOutput>
| Enum Constant and Description |
|---|
ABSOLUTE
Return the data as is
|
BINARY
1 if the difference is positive, -1 if negative
|
DIFFERENCE
Return the difference between the value and its reference point
|
| Modifier and Type | Method and Description |
|---|---|
static DifferentialOutput |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DifferentialOutput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DifferentialOutput ABSOLUTE
public static final DifferentialOutput DIFFERENCE
public static final DifferentialOutput BINARY
public static DifferentialOutput[] values()
for (DifferentialOutput c : DifferentialOutput.values()) System.out.println(c);
public static DifferentialOutput 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