com.novell.db.object.bean
Enum AttributeSchemaBean.TypeType

java.lang.Object
  extended by java.lang.Enum<AttributeSchemaBean.TypeType>
      extended by com.novell.db.object.bean.AttributeSchemaBean.TypeType
All Implemented Interfaces:
Serializable, Comparable<AttributeSchemaBean.TypeType>
Enclosing class:
AttributeSchemaBean

public static enum AttributeSchemaBean.TypeType
extends Enum<AttributeSchemaBean.TypeType>

An enumerated type representing values for the field 'type'.

See Also:
AttributeSchemaBean.TYPE

Enum Constant Summary
_INVALID_
           
BEAN
           
BOOLEAN
           
DATE
           
DOUBLE
           
INTEGER
           
LINK
           
LIST
           
LONG
           
MAP
           
SET
           
STRING
           
 
Method Summary
static AttributeSchemaBean.TypeType fromValue(String value)
           
 String toValue()
           
static AttributeSchemaBean.TypeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AttributeSchemaBean.TypeType[] 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

_INVALID_

public static final AttributeSchemaBean.TypeType _INVALID_

INTEGER

public static final AttributeSchemaBean.TypeType INTEGER

BEAN

public static final AttributeSchemaBean.TypeType BEAN

DOUBLE

public static final AttributeSchemaBean.TypeType DOUBLE

SET

public static final AttributeSchemaBean.TypeType SET

BOOLEAN

public static final AttributeSchemaBean.TypeType BOOLEAN

LINK

public static final AttributeSchemaBean.TypeType LINK

DATE

public static final AttributeSchemaBean.TypeType DATE

LIST

public static final AttributeSchemaBean.TypeType LIST

LONG

public static final AttributeSchemaBean.TypeType LONG

MAP

public static final AttributeSchemaBean.TypeType MAP

STRING

public static final AttributeSchemaBean.TypeType STRING
Method Detail

values

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

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

valueOf

public static AttributeSchemaBean.TypeType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toValue

public String toValue()

fromValue

public static AttributeSchemaBean.TypeType fromValue(String value)