public enum CollateralStatus extends Enum<CollateralStatus>
Enum Constant and Description |
---|
Assigned
Assigned (Accepted).
|
Cancelled
Cancelled.
|
None
Default value.
|
Substituted
Substituted.
|
Unassigned
Unassigned.
|
Modifier and Type | Method and Description |
---|---|
static CollateralStatus |
forValue(int value)
Returns enum value for the int representation
|
int |
getValue()
Gets current value.
|
static CollateralStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollateralStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollateralStatus None
public static final CollateralStatus Unassigned
public static final CollateralStatus Assigned
public static final CollateralStatus Substituted
public static final CollateralStatus Cancelled
public static CollateralStatus[] values()
for (CollateralStatus c : CollateralStatus.values()) System.out.println(c);
public static CollateralStatus 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 CollateralStatus forValue(int value)
value
- valueCopyright © 2014–2025 Onix Solutions. All rights reserved.