Enum ReviewStatus.ReviewStatusType
- java.lang.Object
-
- java.lang.Enum<ReviewStatus.ReviewStatusType>
-
- de.ipk_gatersleben.bit.bi.edal.primary_data.reference.review.ReviewStatus.ReviewStatusType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ReviewStatus.ReviewStatusType>
- Enclosing class:
- ReviewStatus
public static enum ReviewStatus.ReviewStatusType extends java.lang.Enum<ReviewStatus.ReviewStatusType>
Enumto describe the review status.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTEDThePublicReferencewas accepted.REJECTEDThePublicReferencewas rejected.TIMEOUTThe status ofPublicReferencewas not yet decided and the decision process timed out.UNDECIDEDThe status ofPublicReferencewas not yet decided.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReviewStatus.ReviewStatusTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ReviewStatus.ReviewStatusType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCEPTED
public static final ReviewStatus.ReviewStatusType ACCEPTED
ThePublicReferencewas accepted.
-
REJECTED
public static final ReviewStatus.ReviewStatusType REJECTED
ThePublicReferencewas rejected.
-
TIMEOUT
public static final ReviewStatus.ReviewStatusType TIMEOUT
The status ofPublicReferencewas not yet decided and the decision process timed out.
-
UNDECIDED
public static final ReviewStatus.ReviewStatusType UNDECIDED
The status ofPublicReferencewas not yet decided.
-
-
Method Detail
-
values
public static ReviewStatus.ReviewStatusType[] 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 (ReviewStatus.ReviewStatusType c : ReviewStatus.ReviewStatusType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReviewStatus.ReviewStatusType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-