Enum Constant and Description |
---|
FALSE_VALUES_IN_A_ROW_TO_SET_FALSE
Debounce-Setting: If the StateChannel value is continuously set to 'false'
for configured times in a row, the value of the StateChannel is set to false;
otherwise true.
|
SAME_VALUES_IN_A_ROW_TO_CHANGE
Debounce-Setting: If the StateChannel value is continuously set to the same
value for configured times in a row, the value of the StateChannel is set to
that value; otherwise stays at the old value.
|
TRUE_VALUES_IN_A_ROW_TO_SET_TRUE
Debounce-Setting: If the StateChannel value is continuously set to 'true' for
configured times in a row, the value of the StateChannel is set to true;
otherwise false.
|
Modifier and Type | Method and Description |
---|---|
static Debounce |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Debounce[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Debounce TRUE_VALUES_IN_A_ROW_TO_SET_TRUE
public static final Debounce FALSE_VALUES_IN_A_ROW_TO_SET_FALSE
public static final Debounce SAME_VALUES_IN_A_ROW_TO_CHANGE
public static Debounce[] values()
for (Debounce c : Debounce.values()) System.out.println(c);
public static Debounce 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