public enum PaymentFrequencyType extends Enum<PaymentFrequencyType>
| Enum Constant and Description |
|---|
FORTNIGHTLY |
FOURWEEKLY |
MONTHLY |
QUARTERLY |
TWICEMONTHLY |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static PaymentFrequencyType |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static PaymentFrequencyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentFrequencyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentFrequencyType WEEKLY
public static final PaymentFrequencyType MONTHLY
public static final PaymentFrequencyType FORTNIGHTLY
public static final PaymentFrequencyType QUARTERLY
public static final PaymentFrequencyType TWICEMONTHLY
public static final PaymentFrequencyType FOURWEEKLY
public static final PaymentFrequencyType YEARLY
public static PaymentFrequencyType[] values()
for (PaymentFrequencyType c : PaymentFrequencyType.values()) System.out.println(c);
public static PaymentFrequencyType 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 String toString()
toString in class Enum<PaymentFrequencyType>public static PaymentFrequencyType fromValue(String value)
Copyright © 2020. All rights reserved.