org.qi4j.test.entity
Enum AbstractEntityStoreTest.TestEnum

java.lang.Object
  extended by java.lang.Enum<AbstractEntityStoreTest.TestEnum>
      extended by org.qi4j.test.entity.AbstractEntityStoreTest.TestEnum
All Implemented Interfaces:
Serializable, Comparable<AbstractEntityStoreTest.TestEnum>
Enclosing class:
AbstractEntityStoreTest

public static enum AbstractEntityStoreTest.TestEnum
extends Enum<AbstractEntityStoreTest.TestEnum>


Enum Constant Summary
VALUE1
           
VALUE2
           
VALUE3
           
 
Method Summary
static AbstractEntityStoreTest.TestEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractEntityStoreTest.TestEnum[] 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

VALUE1

public static final AbstractEntityStoreTest.TestEnum VALUE1

VALUE2

public static final AbstractEntityStoreTest.TestEnum VALUE2

VALUE3

public static final AbstractEntityStoreTest.TestEnum VALUE3
Method Detail

values

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

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

valueOf

public static AbstractEntityStoreTest.TestEnum 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