Enum AbstractEntityInitializer.State
- java.lang.Object
-
- java.lang.Enum<AbstractEntityInitializer.State>
-
- org.hibernate.sql.results.graph.entity.AbstractEntityInitializer.State
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractEntityInitializer.State>
- Enclosing class:
- AbstractEntityInitializer
protected static enum AbstractEntityInitializer.State extends Enum<AbstractEntityInitializer.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INITIALIZED
KEY_RESOLVED
MISSING
RESOLVED
UNINITIALIZED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractEntityInitializer.State
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractEntityInitializer.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNINITIALIZED
public static final AbstractEntityInitializer.State UNINITIALIZED
-
MISSING
public static final AbstractEntityInitializer.State MISSING
-
KEY_RESOLVED
public static final AbstractEntityInitializer.State KEY_RESOLVED
-
RESOLVED
public static final AbstractEntityInitializer.State RESOLVED
-
INITIALIZED
public static final AbstractEntityInitializer.State INITIALIZED
-
-
Method Detail
-
values
public static AbstractEntityInitializer.State[] 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 (AbstractEntityInitializer.State c : AbstractEntityInitializer.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractEntityInitializer.State 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 nameNullPointerException
- if the argument is null
-
-