jp.go.aist.rtm.RTC
Enum FactoryGlobal.ReturnCode

java.lang.Object
  extended by java.lang.Enum<FactoryGlobal.ReturnCode>
      extended by jp.go.aist.rtm.RTC.FactoryGlobal.ReturnCode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FactoryGlobal.ReturnCode>
Enclosing class:
FactoryGlobal<ABSTRACTCLASS,IDENTIFIER>

public static enum FactoryGlobal.ReturnCode
extends java.lang.Enum<FactoryGlobal.ReturnCode>

Return code


Enum Constant Summary
ALREADY_EXISTS
           
FACTORY_ERROR
           
FACTORY_OK
           
INVALID_ARG
           
NOT_FOUND
           
UNKNOWN_ERROR
           
 
Method Summary
static FactoryGlobal.ReturnCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FactoryGlobal.ReturnCode[] 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

FACTORY_OK

public static final FactoryGlobal.ReturnCode FACTORY_OK

FACTORY_ERROR

public static final FactoryGlobal.ReturnCode FACTORY_ERROR

ALREADY_EXISTS

public static final FactoryGlobal.ReturnCode ALREADY_EXISTS

NOT_FOUND

public static final FactoryGlobal.ReturnCode NOT_FOUND

INVALID_ARG

public static final FactoryGlobal.ReturnCode INVALID_ARG

UNKNOWN_ERROR

public static final FactoryGlobal.ReturnCode UNKNOWN_ERROR
Method Detail

values

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

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

valueOf

public static FactoryGlobal.ReturnCode 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