Package de.xima.fc.mdl.enums
Enum EWorkflowStateModelProperty
- java.lang.Object
-
- java.lang.Enum<EWorkflowStateModelProperty>
-
- de.xima.fc.mdl.enums.EWorkflowStateModelProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<EWorkflowStateModelProperty>
public enum EWorkflowStateModelProperty extends Enum<EWorkflowStateModelProperty>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description allowAccessToAnonymousApplicant
allowAccessToApplicant
allowAuthenticatedUser
allowPasswordAuthenticator
authenticators
description
formRecordDeletable
name
other
type
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EWorkflowStateModelProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static EWorkflowStateModelProperty
valueOfOrOther(String property)
static EWorkflowStateModelProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
authenticators
public static final EWorkflowStateModelProperty authenticators
-
description
public static final EWorkflowStateModelProperty description
-
formRecordDeletable
public static final EWorkflowStateModelProperty formRecordDeletable
-
name
public static final EWorkflowStateModelProperty name
-
other
public static final EWorkflowStateModelProperty other
-
type
public static final EWorkflowStateModelProperty type
-
allowAccessToApplicant
public static final EWorkflowStateModelProperty allowAccessToApplicant
-
allowAccessToAnonymousApplicant
public static final EWorkflowStateModelProperty allowAccessToAnonymousApplicant
-
allowAuthenticatedUser
public static final EWorkflowStateModelProperty allowAuthenticatedUser
-
allowPasswordAuthenticator
public static final EWorkflowStateModelProperty allowPasswordAuthenticator
-
-
Method Detail
-
values
public static EWorkflowStateModelProperty[] 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 (EWorkflowStateModelProperty c : EWorkflowStateModelProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EWorkflowStateModelProperty 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
-
valueOfOrOther
public static EWorkflowStateModelProperty valueOfOrOther(String property)
-
-