com.novell.sentinel.client.bean.field
Enum BeanFieldMetaData.Type

java.lang.Object
  extended by java.lang.Enum<BeanFieldMetaData.Type>
      extended by com.novell.sentinel.client.bean.field.BeanFieldMetaData.Type
All Implemented Interfaces:
Serializable, Comparable<BeanFieldMetaData.Type>
Enclosing class:
BeanFieldMetaData

public static enum BeanFieldMetaData.Type
extends Enum<BeanFieldMetaData.Type>


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

_INTERNAL_

public static final BeanFieldMetaData.Type _INTERNAL_

STRING

public static final BeanFieldMetaData.Type STRING

BOOLEAN

public static final BeanFieldMetaData.Type BOOLEAN

INTEGER

public static final BeanFieldMetaData.Type INTEGER

LONG

public static final BeanFieldMetaData.Type LONG

DOUBLE

public static final BeanFieldMetaData.Type DOUBLE

DATE

public static final BeanFieldMetaData.Type DATE

LINK

public static final BeanFieldMetaData.Type LINK

BEAN

public static final BeanFieldMetaData.Type BEAN

LIST

public static final BeanFieldMetaData.Type LIST

SET

public static final BeanFieldMetaData.Type SET

MAP

public static final BeanFieldMetaData.Type MAP
Method Detail

values

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

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

valueOf

public static BeanFieldMetaData.Type 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