Enum OrgClosureManager.StartupAction
- java.lang.Object
-
- java.lang.Enum<OrgClosureManager.StartupAction>
-
- com.evolveum.midpoint.repo.sql.helpers.OrgClosureManager.StartupAction
-
- All Implemented Interfaces:
Serializable
,Comparable<OrgClosureManager.StartupAction>
- Enclosing class:
- OrgClosureManager
public static enum OrgClosureManager.StartupAction extends Enum<OrgClosureManager.StartupAction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYS_REBUILD
CHECK
NONE
REBUILD_IF_NEEDED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OrgClosureManager.StartupAction
fromValue(String v)
String
toString()
static OrgClosureManager.StartupAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static OrgClosureManager.StartupAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OrgClosureManager.StartupAction NONE
-
CHECK
public static final OrgClosureManager.StartupAction CHECK
-
REBUILD_IF_NEEDED
public static final OrgClosureManager.StartupAction REBUILD_IF_NEEDED
-
ALWAYS_REBUILD
public static final OrgClosureManager.StartupAction ALWAYS_REBUILD
-
-
Method Detail
-
values
public static OrgClosureManager.StartupAction[] 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 (OrgClosureManager.StartupAction c : OrgClosureManager.StartupAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrgClosureManager.StartupAction 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<OrgClosureManager.StartupAction>
-
fromValue
public static OrgClosureManager.StartupAction fromValue(String v)
-
-