public static enum CmdLogicBoard.Interval extends java.lang.Enum<CmdLogicBoard.Interval>
Enum Constant and Description |
---|
FRAME
Each frame (not supported yet)
|
S1
One second
|
S10
Every 10 seconds
|
S60
60 seconds
|
Modifier and Type | Field and Description |
---|---|
int |
rateVal |
Modifier and Type | Method and Description |
---|---|
static CmdLogicBoard.Interval |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmdLogicBoard.Interval[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmdLogicBoard.Interval FRAME
public static final CmdLogicBoard.Interval S1
public static final CmdLogicBoard.Interval S10
public static final CmdLogicBoard.Interval S60
public static CmdLogicBoard.Interval[] values()
for (CmdLogicBoard.Interval c : CmdLogicBoard.Interval.values()) System.out.println(c);
public static CmdLogicBoard.Interval 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