public enum OrderPolicy extends Enum<OrderPolicy>
Enum Constant and Description |
---|
FIXED_ORDER_QUANTITY |
LOT_FOR_LOT |
MANUALLY_PLANNED |
NOT_PLANNED |
ORDER_POINT |
PERIOD_ORDER_QUANTITY |
Modifier and Type | Method and Description |
---|---|
static OrderPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderPolicy NOT_PLANNED
public static final OrderPolicy LOT_FOR_LOT
public static final OrderPolicy FIXED_ORDER_QUANTITY
public static final OrderPolicy PERIOD_ORDER_QUANTITY
public static final OrderPolicy ORDER_POINT
public static final OrderPolicy MANUALLY_PLANNED
public static OrderPolicy[] values()
for (OrderPolicy c : OrderPolicy.values()) System.out.println(c);
public static OrderPolicy 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.