public enum ManuscriptStatus extends Enum<ManuscriptStatus>
| Enum Constant and Description |
|---|
ACCEPTED |
REJECTED |
UNDER_REVIEW |
| Modifier and Type | Method and Description |
|---|---|
static ManuscriptStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManuscriptStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManuscriptStatus ACCEPTED
public static final ManuscriptStatus UNDER_REVIEW
public static final ManuscriptStatus REJECTED
public static ManuscriptStatus[] values()
for (ManuscriptStatus c : ManuscriptStatus.values()) System.out.println(c);
public static ManuscriptStatus 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 © 2017. All rights reserved.