public static enum ReviewStatus.ReviewStatusType extends Enum<ReviewStatus.ReviewStatusType>
Enum to describe the review status.| Enum Constant and Description |
|---|
ACCEPTED
The
PublicReference
was accepted. |
REJECTED
The
PublicReference
was rejected. |
UNDECIDED
The status of
PublicReference
was not yet decided. |
| Modifier and Type | Method and Description |
|---|---|
static ReviewStatus.ReviewStatusType |
valueOf(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.
|
public static final ReviewStatus.ReviewStatusType ACCEPTED
PublicReference
was accepted.public static final ReviewStatus.ReviewStatusType REJECTED
PublicReference
was rejected.public static final ReviewStatus.ReviewStatusType UNDECIDED
PublicReference
was not yet decided.public static ReviewStatus.ReviewStatusType[] values()
for (ReviewStatus.ReviewStatusType c : ReviewStatus.ReviewStatusType.values()) System.out.println(c);
public static ReviewStatus.ReviewStatusType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014 Leibniz Institute of Plant Genetics and Crop Plant Research (IPK). All rights reserved.