de.unibi.airobots.resaidroid.constants
Enum Constants.Properties

java.lang.Object
  extended by java.lang.Enum<Constants.Properties>
      extended by de.unibi.airobots.resaidroid.constants.Constants.Properties
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Constants.Properties>
Enclosing class:
Constants

public static enum Constants.Properties
extends java.lang.Enum<Constants.Properties>


Enum Constant Summary
ACCOUNT
           
ACTUATOR
           
CLIENT_TIME
           
CMD
           
COMP
           
COMPONENT
           
CONNECTED
           
PASSWORD
           
SENSOR
           
SERVER_IP
           
SERVER_PORT
           
SERVER_TIME
           
 
Method Summary
static Constants.Properties valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Constants.Properties[] 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

CLIENT_TIME

public static final Constants.Properties CLIENT_TIME

SERVER_TIME

public static final Constants.Properties SERVER_TIME

CMD

public static final Constants.Properties CMD

COMP

public static final Constants.Properties COMP

ACTUATOR

public static final Constants.Properties ACTUATOR

SENSOR

public static final Constants.Properties SENSOR

COMPONENT

public static final Constants.Properties COMPONENT

SERVER_IP

public static final Constants.Properties SERVER_IP

SERVER_PORT

public static final Constants.Properties SERVER_PORT

ACCOUNT

public static final Constants.Properties ACCOUNT

PASSWORD

public static final Constants.Properties PASSWORD

CONNECTED

public static final Constants.Properties CONNECTED
Method Detail

values

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

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

valueOf

public static Constants.Properties 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