com.novell.sentinel.client.bean.field
Enum BeanCollectionFieldMetaData.ImplType

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

public static enum BeanCollectionFieldMetaData.ImplType
extends Enum<BeanCollectionFieldMetaData.ImplType>


Enum Constant Summary
ARRAY
           
HASH
           
LINKED
           
TREE
           
 
Method Summary
static BeanCollectionFieldMetaData.ImplType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BeanCollectionFieldMetaData.ImplType[] 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

HASH

public static final BeanCollectionFieldMetaData.ImplType HASH

TREE

public static final BeanCollectionFieldMetaData.ImplType TREE

ARRAY

public static final BeanCollectionFieldMetaData.ImplType ARRAY

LINKED

public static final BeanCollectionFieldMetaData.ImplType LINKED
Method Detail

values

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

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

valueOf

public static BeanCollectionFieldMetaData.ImplType 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