public enum CustomerCapacity extends Enum<CustomerCapacity>
Enum Constant and Description |
---|
AllOther
All other.
|
ClearingFirmTradingForItsProprietaryAccount
Clearing Firm trading for its proprietary account.
|
MemberTradingForAnotherMember
Member trading for another member.
|
MemberTradingForTheirOwnAccount
Member trading for their own account.
|
None
Default value.
|
Modifier and Type | Method and Description |
---|---|
static CustomerCapacity |
forValue(int value)
Returns enum value for the int representation
|
int |
getValue()
Gets current value.
|
static CustomerCapacity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomerCapacity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomerCapacity None
public static final CustomerCapacity MemberTradingForTheirOwnAccount
public static final CustomerCapacity ClearingFirmTradingForItsProprietaryAccount
public static final CustomerCapacity MemberTradingForAnotherMember
public static final CustomerCapacity AllOther
public static CustomerCapacity[] values()
for (CustomerCapacity c : CustomerCapacity.values()) System.out.println(c);
public static CustomerCapacity 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 int getValue()
public static CustomerCapacity forValue(int value)
value
- valueCopyright © 2014–2025 Onix Solutions. All rights reserved.