public enum OrderCapacity extends Enum<OrderCapacity> implements EnumValue
Enum Constant and Description |
---|
AGENCY |
AGENT_FOR_OTHER_MEMBER |
INDIVIDUAL |
PRINCIPAL |
PROPRIETARY |
RISKLESS_PRINCIPAL |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(byte[] val) |
boolean |
equals(byte[] val,
int offset,
int length) |
byte[] |
getValue() |
static OrderCapacity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderCapacity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderCapacity AGENCY
public static final OrderCapacity PROPRIETARY
public static final OrderCapacity INDIVIDUAL
public static final OrderCapacity PRINCIPAL
public static final OrderCapacity RISKLESS_PRINCIPAL
public static final OrderCapacity AGENT_FOR_OTHER_MEMBER
public static OrderCapacity[] values()
for (OrderCapacity c : OrderCapacity.values()) System.out.println(c);
public static OrderCapacity 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 boolean equals(byte[] val, int offset, int length)
Copyright © 2000–2022 EPAM Systems. All rights reserved.