public enum OrderOrigination extends Enum<OrderOrigination>
Enum Constant and Description |
---|
DIRECT_ACCESS_OR_SPONSORED_ACCESS_CUSTOMER
Order received from a direct access customer.
|
NO_VALUE
Identifies no value.
|
Modifier and Type | Method and Description |
---|---|
static OrderOrigination |
forValue(byte value) |
byte |
getValue() |
static OrderOrigination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderOrigination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderOrigination NO_VALUE
public static final OrderOrigination DIRECT_ACCESS_OR_SPONSORED_ACCESS_CUSTOMER
public static OrderOrigination[] values()
for (OrderOrigination c : OrderOrigination.values()) System.out.println(c);
public static OrderOrigination 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 nullpublic byte getValue()
public static OrderOrigination forValue(byte value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.