public static enum Sequencer.Clock extends java.lang.Enum<Sequencer.Clock>
| Enum Constant and Description |
|---|
CLK_16M
16 MHz (62.5ns time-base).
|
CLK_250K
250 KHz (4us time-base).
|
CLK_2M
2 MHz (0.5us time-base).
|
CLK_62K5
62.5 KHz (16us time-base).
|
| Modifier and Type | Method and Description |
|---|---|
static Sequencer.Clock |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Sequencer.Clock[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sequencer.Clock CLK_16M
public static final Sequencer.Clock CLK_2M
public static final Sequencer.Clock CLK_250K
public static final Sequencer.Clock CLK_62K5
public static Sequencer.Clock[] values()
for (Sequencer.Clock c : Sequencer.Clock.values()) System.out.println(c);
public static Sequencer.Clock 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