Enum AjaxWizard.Mode
- java.lang.Object
-
- java.lang.Enum<AjaxWizard.Mode>
-
- org.apache.syncope.client.ui.commons.wizards.AjaxWizard.Mode
-
- All Implemented Interfaces:
Serializable
,Comparable<AjaxWizard.Mode>
- Enclosing class:
- AjaxWizard<T extends Serializable>
public static enum AjaxWizard.Mode extends Enum<AjaxWizard.Mode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATE
EDIT
EDIT_APPROVAL
READONLY
TEMPLATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AjaxWizard.Mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static AjaxWizard.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final AjaxWizard.Mode CREATE
-
EDIT
public static final AjaxWizard.Mode EDIT
-
TEMPLATE
public static final AjaxWizard.Mode TEMPLATE
-
READONLY
public static final AjaxWizard.Mode READONLY
-
EDIT_APPROVAL
public static final AjaxWizard.Mode EDIT_APPROVAL
-
-
Method Detail
-
values
public static AjaxWizard.Mode[] 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 (AjaxWizard.Mode c : AjaxWizard.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AjaxWizard.Mode 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
-
-