public enum PlannedOrderItemStatus extends Enum<PlannedOrderItemStatus>
Enum Constant and Description |
---|
CANCELED |
CLOSED |
COMPLETE |
HOLD |
MRP_PLANNED |
OPEN |
PARTIALLY_RECEIVED |
QUOTE |
RELEASED |
Modifier and Type | Method and Description |
---|---|
static PlannedOrderItemStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlannedOrderItemStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlannedOrderItemStatus QUOTE
public static final PlannedOrderItemStatus OPEN
public static final PlannedOrderItemStatus RELEASED
public static final PlannedOrderItemStatus HOLD
public static final PlannedOrderItemStatus CANCELED
public static final PlannedOrderItemStatus COMPLETE
public static final PlannedOrderItemStatus PARTIALLY_RECEIVED
public static final PlannedOrderItemStatus CLOSED
public static final PlannedOrderItemStatus MRP_PLANNED
public static PlannedOrderItemStatus[] values()
for (PlannedOrderItemStatus c : PlannedOrderItemStatus.values()) System.out.println(c);
public static PlannedOrderItemStatus 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.