public enum ContractState extends Enum<ContractState>
Enum Constant and Description |
---|
DPS_REGISTRATION_RECEIVED |
DPS_REGISTRATION_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ContractState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContractState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContractState DPS_REGISTRATION_RECEIVED
public static final ContractState DPS_REGISTRATION_UNKNOWN
public static ContractState[] values()
for (ContractState c : ContractState.values()) System.out.println(c);
public static ContractState 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 nullCopyright © 2022. All rights reserved.