Package lumis.service.formbuilder
Enum AnswerStatus
- java.lang.Object
-
- java.lang.Enum<AnswerStatus>
-
- lumis.service.formbuilder.AnswerStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<AnswerStatus>
public enum AnswerStatus extends Enum<AnswerStatus>
Enumeration of statuses forAnswer
objects- Since:
- 8.2.0
- Version:
- $Revision: 18134 $ $Date: 2015-12-15 17:29:32 -0200 (Tue, 15 Dec 2015) $
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOT_PROCESSED
PROCESSED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AnswerStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static AnswerStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_PROCESSED
public static final AnswerStatus NOT_PROCESSED
-
PROCESSED
public static final AnswerStatus PROCESSED
-
-
Method Detail
-
values
public static AnswerStatus[] 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 (AnswerStatus c : AnswerStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnswerStatus 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
-
-