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