public enum SettlMethod extends Enum<SettlMethod>
Enum Constant and Description |
---|
CASH_SETTLEMENT
Cash Settlement.
|
NO_VALUE
Identifies no value.
|
PHYSICAL_SETTLEMENT
Physical Settlement.
|
Modifier and Type | Method and Description |
---|---|
static SettlMethod |
forValue(char value) |
char |
getValue() |
static SettlMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SettlMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SettlMethod NO_VALUE
public static final SettlMethod CASH_SETTLEMENT
public static final SettlMethod PHYSICAL_SETTLEMENT
public static SettlMethod[] values()
for (SettlMethod c : SettlMethod.values()) System.out.println(c);
public static SettlMethod 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 char getValue()
public static SettlMethod forValue(char value)
Copyright © 2012–2024 Onix Solutions. All rights reserved.