ioio.lib.api
Enum IOIO.VersionType

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

public static enum IOIO.VersionType
extends java.lang.Enum<IOIO.VersionType>

A versioned component in the system.

See Also:
IOIO.getImplVersion(VersionType)

Enum Constant Summary
APP_FIRMWARE_VER
          Application layer firmware version.
BOOTLOADER_VER
          Bootloader version.
HARDWARE_VER
          Hardware version.
IOIOLIB_VER
          IOIOLib version.
 
Method Summary
static IOIO.VersionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IOIO.VersionType[] 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

HARDWARE_VER

public static final IOIO.VersionType HARDWARE_VER
Hardware version.


BOOTLOADER_VER

public static final IOIO.VersionType BOOTLOADER_VER
Bootloader version.


APP_FIRMWARE_VER

public static final IOIO.VersionType APP_FIRMWARE_VER
Application layer firmware version.


IOIOLIB_VER

public static final IOIO.VersionType IOIOLIB_VER
IOIOLib version.

Method Detail

values

public static IOIO.VersionType[] 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 (IOIO.VersionType c : IOIO.VersionType.values())
    System.out.println(c);

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

valueOf

public static IOIO.VersionType 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