Enum StepControlAspect.AspectPersistanceStatus
- java.lang.Object
-
- java.lang.Enum<StepControlAspect.AspectPersistanceStatus>
-
- org.bidib.wizard.mvc.stepcontrol.model.StepControlAspect.AspectPersistanceStatus
-
- All Implemented Interfaces:
Serializable,Comparable<StepControlAspect.AspectPersistanceStatus>
- Enclosing class:
- StepControlAspect
public static enum StepControlAspect.AspectPersistanceStatus extends Enum<StepControlAspect.AspectPersistanceStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description statusPersistentstatusTransient
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StepControlAspect.AspectPersistanceStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static StepControlAspect.AspectPersistanceStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
statusTransient
public static final StepControlAspect.AspectPersistanceStatus statusTransient
-
statusPersistent
public static final StepControlAspect.AspectPersistanceStatus statusPersistent
-
-
Method Detail
-
values
public static StepControlAspect.AspectPersistanceStatus[] 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 (StepControlAspect.AspectPersistanceStatus c : StepControlAspect.AspectPersistanceStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StepControlAspect.AspectPersistanceStatus 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
-
-