public static enum PulseInput.ClockRate extends java.lang.Enum<PulseInput.ClockRate>
| Enum Constant and Description |
|---|
RATE_16MHz
16MHz
|
RATE_250KHz
250KHz
|
RATE_2MHz
2MHz
|
RATE_62KHz
62.5KHz
|
| Modifier and Type | Field and Description |
|---|---|
int |
hertz
The value in Hertz units.
|
| Modifier and Type | Method and Description |
|---|---|
static PulseInput.ClockRate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PulseInput.ClockRate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PulseInput.ClockRate RATE_16MHz
public static final PulseInput.ClockRate RATE_2MHz
public static final PulseInput.ClockRate RATE_250KHz
public static final PulseInput.ClockRate RATE_62KHz
public static PulseInput.ClockRate[] values()
for (PulseInput.ClockRate c : PulseInput.ClockRate.values()) System.out.println(c);
public static PulseInput.ClockRate 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