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