Package com.identityworksllc.iiq.common
Enum ManagedAttributeUtilities.BuildForm.Flags
- java.lang.Object
-
- java.lang.Enum<ManagedAttributeUtilities.BuildForm.Flags>
-
- com.identityworksllc.iiq.common.ManagedAttributeUtilities.BuildForm.Flags
-
- All Implemented Interfaces:
ManagedAttributeUtilities.BuildForm.Option
,Serializable
,Comparable<ManagedAttributeUtilities.BuildForm.Flags>
- Enclosing class:
- ManagedAttributeUtilities.BuildForm
public static enum ManagedAttributeUtilities.BuildForm.Flags extends Enum<ManagedAttributeUtilities.BuildForm.Flags> implements ManagedAttributeUtilities.BuildForm.Option
Yes/no flags as form options
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AllowCancel
AllowExit
RequireComments
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ManagedAttributeUtilities.BuildForm.Flags
valueOf(String name)
Returns the enum constant of this type with the specified name.static ManagedAttributeUtilities.BuildForm.Flags[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RequireComments
public static final ManagedAttributeUtilities.BuildForm.Flags RequireComments
-
AllowExit
public static final ManagedAttributeUtilities.BuildForm.Flags AllowExit
-
AllowCancel
public static final ManagedAttributeUtilities.BuildForm.Flags AllowCancel
-
-
Method Detail
-
values
public static ManagedAttributeUtilities.BuildForm.Flags[] 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 (ManagedAttributeUtilities.BuildForm.Flags c : ManagedAttributeUtilities.BuildForm.Flags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagedAttributeUtilities.BuildForm.Flags 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
-
-