Package org.bedework.eventreg.web
Enum AuthAbstractController.AdjustResult
- java.lang.Object
-
- java.lang.Enum<AuthAbstractController.AdjustResult>
-
- org.bedework.eventreg.web.AuthAbstractController.AdjustResult
-
- All Implemented Interfaces:
Serializable,Comparable<AuthAbstractController.AdjustResult>
- Enclosing class:
- AuthAbstractController
protected static enum AuthAbstractController.AdjustResult extends Enum<AuthAbstractController.AdjustResult>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description addednochangenoticketsremovedwaitListFull
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthAbstractController.AdjustResultvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthAbstractController.AdjustResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
removed
public static final AuthAbstractController.AdjustResult removed
-
added
public static final AuthAbstractController.AdjustResult added
-
nochange
public static final AuthAbstractController.AdjustResult nochange
-
notickets
public static final AuthAbstractController.AdjustResult notickets
-
waitListFull
public static final AuthAbstractController.AdjustResult waitListFull
-
-
Method Detail
-
values
public static AuthAbstractController.AdjustResult[] 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 (AuthAbstractController.AdjustResult c : AuthAbstractController.AdjustResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthAbstractController.AdjustResult 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
-
-