public static enum AnalogInput.AnalogTriggerType extends java.lang.Enum<AnalogInput.AnalogTriggerType>
| Enum Constant and Description |
|---|
FALLING_PULSE |
IN_WINDOW |
RISING_PULSE |
STATE |
| Modifier and Type | Method and Description |
|---|---|
static AnalogInput.AnalogTriggerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnalogInput.AnalogTriggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalogInput.AnalogTriggerType IN_WINDOW
public static final AnalogInput.AnalogTriggerType STATE
public static final AnalogInput.AnalogTriggerType RISING_PULSE
public static final AnalogInput.AnalogTriggerType FALLING_PULSE
public static AnalogInput.AnalogTriggerType[] values()
for (AnalogInput.AnalogTriggerType c : AnalogInput.AnalogTriggerType.values()) System.out.println(c);
public static AnalogInput.AnalogTriggerType 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