org.opengts.extra.tables
Enum DeviceMessage.MessageType

java.lang.Object
  extended by java.lang.Enum<DeviceMessage.MessageType>
      extended by org.opengts.extra.tables.DeviceMessage.MessageType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DeviceMessage.MessageType>, EnumTools.IntValue, EnumTools.StringLocale
Enclosing class:
DeviceMessage

public static enum DeviceMessage.MessageType
extends java.lang.Enum<DeviceMessage.MessageType>
implements EnumTools.StringLocale, EnumTools.IntValue


Enum Constant Summary
COMMAND
           
NONE
           
OK
           
TEXT
           
YES_NO
           
 
Method Summary
 int getIntValue()
           
 boolean isNone()
           
 boolean isOK()
           
 boolean isText()
           
 boolean isYesNo()
           
 java.lang.String toString()
           
 java.lang.String toString(java.util.Locale loc)
           
static DeviceMessage.MessageType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DeviceMessage.MessageType[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final DeviceMessage.MessageType NONE

OK

public static final DeviceMessage.MessageType OK

YES_NO

public static final DeviceMessage.MessageType YES_NO

TEXT

public static final DeviceMessage.MessageType TEXT

COMMAND

public static final DeviceMessage.MessageType COMMAND
Method Detail

values

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

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

valueOf

public static DeviceMessage.MessageType 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

getIntValue

public int getIntValue()
Specified by:
getIntValue in interface EnumTools.IntValue

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<DeviceMessage.MessageType>

toString

public java.lang.String toString(java.util.Locale loc)
Specified by:
toString in interface EnumTools.StringLocale

isNone

public boolean isNone()

isOK

public boolean isOK()

isYesNo

public boolean isYesNo()

isText

public boolean isText()