public enum PublicationStatus extends Enum<PublicationStatus>
Enum to represent the current status of the approval process for a
PublicReference| Enum Constant and Description |
|---|
ACCEPTED
the corresponding
PublicReference
is checked and accepted. |
REJECTED
the corresponding
PublicReference
is checked and rejected. |
SUBMITTED
the corresponding
PublicReference
is not yet requested. |
UNDER_REVIEW
the corresponding
PublicReference
is under review. |
| Modifier and Type | Method and Description |
|---|---|
static PublicationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PublicationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublicationStatus SUBMITTED
PublicReference
is not yet requested.public static final PublicationStatus UNDER_REVIEW
PublicReference
is under review.public static final PublicationStatus ACCEPTED
PublicReference
is checked and accepted.public static final PublicationStatus REJECTED
PublicReference
is checked and rejected.public static PublicationStatus[] values()
for (PublicationStatus c : PublicationStatus.values()) System.out.println(c);
public static PublicationStatus 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 © 2015 Leibniz Institute of Plant Genetics and Crop Plant Research (IPK). All rights reserved.