Package com.avoka.fc.core.security
Enum IFormSubmissionAccessController.AccessPermission
- java.lang.Object
-
- java.lang.Enum<IFormSubmissionAccessController.AccessPermission>
-
- com.avoka.fc.core.security.IFormSubmissionAccessController.AccessPermission
-
- All Implemented Interfaces:
Serializable
,Comparable<IFormSubmissionAccessController.AccessPermission>
- Enclosing interface:
- IFormSubmissionAccessController
public static enum IFormSubmissionAccessController.AccessPermission extends Enum<IFormSubmissionAccessController.AccessPermission>
The form access permission.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABANDONED_FORM
COMPLETED_FORM
NEW_FORM
SAVED_FORM
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IFormSubmissionAccessController.AccessPermission
valueOf(String name)
Returns the enum constant of this type with the specified name.static IFormSubmissionAccessController.AccessPermission[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW_FORM
public static final IFormSubmissionAccessController.AccessPermission NEW_FORM
-
SAVED_FORM
public static final IFormSubmissionAccessController.AccessPermission SAVED_FORM
-
COMPLETED_FORM
public static final IFormSubmissionAccessController.AccessPermission COMPLETED_FORM
-
ABANDONED_FORM
public static final IFormSubmissionAccessController.AccessPermission ABANDONED_FORM
-
-
Method Detail
-
values
public static IFormSubmissionAccessController.AccessPermission[] 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 (IFormSubmissionAccessController.AccessPermission c : IFormSubmissionAccessController.AccessPermission.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IFormSubmissionAccessController.AccessPermission 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
-
-