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