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