public enum SettlementMethod extends Enum<SettlementMethod>
Enum Constant and Description |
---|
CashSettlementRequired
Cash settlement required.
|
ElectionAtExercise
Election at exercise.
|
None
Default value.
|
PhysicalSettlementRequired
Physical settlement required.
|
Modifier and Type | Method and Description |
---|---|
static SettlementMethod |
forValue(String value)
Returns enum value for the string representation
|
String |
getValue()
Gets current value.
|
static SettlementMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SettlementMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SettlementMethod None
public static final SettlementMethod CashSettlementRequired
public static final SettlementMethod ElectionAtExercise
public static final SettlementMethod PhysicalSettlementRequired
public static SettlementMethod[] values()
for (SettlementMethod c : SettlementMethod.values()) System.out.println(c);
public static SettlementMethod 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 String getValue()
public static SettlementMethod forValue(String value)
value
- valueCopyright © 2014–2025 Onix Solutions. All rights reserved.