device.service
Enum DevInfoIndex.DEVICE_NAME

java.lang.Object
  extended by java.lang.Enum<DevInfoIndex.DEVICE_NAME>
      extended by device.service.DevInfoIndex.DEVICE_NAME
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DevInfoIndex.DEVICE_NAME>
Enclosing class:
DevInfoIndex

public static enum DevInfoIndex.DEVICE_NAME
extends java.lang.Enum<DevInfoIndex.DEVICE_NAME>


Enum Constant Summary
mutant
           
octant
           
pm60
           
pm80
           
sextant
           
xm5
           
 
Method Summary
 int getMajorNumber()
           
static DevInfoIndex.DEVICE_NAME valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DevInfoIndex.DEVICE_NAME[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

pm60

public static final DevInfoIndex.DEVICE_NAME pm60

mutant

public static final DevInfoIndex.DEVICE_NAME mutant

xm5

public static final DevInfoIndex.DEVICE_NAME xm5

octant

public static final DevInfoIndex.DEVICE_NAME octant

sextant

public static final DevInfoIndex.DEVICE_NAME sextant

pm80

public static final DevInfoIndex.DEVICE_NAME pm80
Method Detail

values

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

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

valueOf

public static DevInfoIndex.DEVICE_NAME 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

getMajorNumber

public int getMajorNumber()