Enum Class SystemSetup.Type
- All Implemented Interfaces:
Serializable,Comparable<SystemSetup.Type>,Constable
- Enclosing class:
- SystemSetup
Describes, at which point the method should be called. During the essential data creation, during the project data
creation or in both.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe method is called in essential and project data creation.The method is called during the essential data creation.The method uses the setting of the class annotation definition.The method is called during the project data creation. -
Method Summary
Modifier and TypeMethodDescriptionbooleanisAll()booleanbooleanstatic SystemSetup.TypeReturns the enum constant of this class with the specified name.static SystemSetup.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ESSENTIAL
The method is called during the essential data creation. -
PROJECT
The method is called during the project data creation. -
ALL
The method is called in essential and project data creation. -
NOTDEFINED
The method uses the setting of the class annotation definition. If also the class annotation is not set ALL is asumed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
isProject
public boolean isProject()- Returns:
trueif Type is PROJECT or ALL.
-
isEssential
public boolean isEssential()- Returns:
trueif Type is ESSENTIAL or ALL.
-
isAll
public boolean isAll()- Returns:
trueif Type is ALL.
-