public enum AutoStartMode extends java.lang.Enum<AutoStartMode>
Enum Constant and Description |
---|
GpiTrigger
start when a GPI
|
Immediate
auto-start immediately
|
None
do not auto-start
|
Periodic
periodically start
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AutoStartMode |
valueOf(int autoStartModeValue) |
static AutoStartMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoStartMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoStartMode None
public static final AutoStartMode Immediate
public static final AutoStartMode Periodic
public static final AutoStartMode GpiTrigger
public static AutoStartMode[] values()
for (AutoStartMode c : AutoStartMode.values()) System.out.println(c);
public static AutoStartMode 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 nullpublic static AutoStartMode valueOf(int autoStartModeValue)
autoStartModeValue
- the integer valuepublic int getValue()