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