ioio.lib.api
Enum PulseInput.ClockRate

java.lang.Object
  extended by java.lang.Enum<PulseInput.ClockRate>
      extended by ioio.lib.api.PulseInput.ClockRate
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PulseInput.ClockRate>
Enclosing interface:
PulseInput

public static enum PulseInput.ClockRate
extends java.lang.Enum<PulseInput.ClockRate>

Suported clock rate enum.


Enum Constant Summary
RATE_16MHz
          16MHz
RATE_250KHz
          250KHz
RATE_2MHz
          2MHz
RATE_62KHz
          62.5KHz
 
Field Summary
 int hertz
          The value in Hertz units.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

RATE_16MHz

public static final PulseInput.ClockRate RATE_16MHz
16MHz


RATE_2MHz

public static final PulseInput.ClockRate RATE_2MHz
2MHz


RATE_250KHz

public static final PulseInput.ClockRate RATE_250KHz
250KHz


RATE_62KHz

public static final PulseInput.ClockRate RATE_62KHz
62.5KHz

Field Detail

hertz

public final int hertz
The value in Hertz units.

Method Detail

values

public static PulseInput.ClockRate[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PulseInput.ClockRate c : PulseInput.ClockRate.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PulseInput.ClockRate valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null