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