Package net.officefloor.flyway
Enum FlywayManagedObjectSource.DependencyKeys
- java.lang.Object
-
- java.lang.Enum<FlywayManagedObjectSource.DependencyKeys>
-
- net.officefloor.flyway.FlywayManagedObjectSource.DependencyKeys
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FlywayManagedObjectSource.DependencyKeys>
- Enclosing class:
- FlywayManagedObjectSource
public static enum FlywayManagedObjectSource.DependencyKeys extends java.lang.Enum<FlywayManagedObjectSource.DependencyKeys>
Dependency keys.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_SOURCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FlywayManagedObjectSource.DependencyKeys
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FlywayManagedObjectSource.DependencyKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA_SOURCE
public static final FlywayManagedObjectSource.DependencyKeys DATA_SOURCE
-
-
Method Detail
-
values
public static FlywayManagedObjectSource.DependencyKeys[] 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 (FlywayManagedObjectSource.DependencyKeys c : FlywayManagedObjectSource.DependencyKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlywayManagedObjectSource.DependencyKeys valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-