Package org.hglteam.testing.jpatesting
Enum JpaPropertyConfigurer.GenerationSource
- java.lang.Object
-
- java.lang.Enum<JpaPropertyConfigurer.GenerationSource>
-
- org.hglteam.testing.jpatesting.JpaPropertyConfigurer.GenerationSource
-
- All Implemented Interfaces:
Serializable,Comparable<JpaPropertyConfigurer.GenerationSource>
- Enclosing interface:
- JpaPropertyConfigurer<PC extends JpaPropertyConfigurer<PC,?>,C extends JpaConfigurer<?,PC>>
public static enum JpaPropertyConfigurer.GenerationSource extends Enum<JpaPropertyConfigurer.GenerationSource>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description METADATAMETADATA_THEN_SCRIPTSCRIPTSCRIPT_THEN_METADATA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static JpaPropertyConfigurer.GenerationSourcevalueOf(String name)Returns the enum constant of this type with the specified name.static JpaPropertyConfigurer.GenerationSource[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
METADATA
public static final JpaPropertyConfigurer.GenerationSource METADATA
-
SCRIPT
public static final JpaPropertyConfigurer.GenerationSource SCRIPT
-
METADATA_THEN_SCRIPT
public static final JpaPropertyConfigurer.GenerationSource METADATA_THEN_SCRIPT
-
SCRIPT_THEN_METADATA
public static final JpaPropertyConfigurer.GenerationSource SCRIPT_THEN_METADATA
-
-
Method Detail
-
values
public static JpaPropertyConfigurer.GenerationSource[] 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 (JpaPropertyConfigurer.GenerationSource c : JpaPropertyConfigurer.GenerationSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JpaPropertyConfigurer.GenerationSource 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
-
getValue
public String getValue()
-
-