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