Serializable, Comparable<TransferPeriod>public enum TransferPeriod extends Enum<TransferPeriod>
| Enum Constant | Description |
|---|---|
BIWEEKLY |
|
MONTHLY |
|
SEMIMONTHLY |
|
WEEKLY |
| Modifier and Type | Method | Description |
|---|---|---|
static TransferPeriod |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static TransferPeriod[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("weekly")
public static final TransferPeriod WEEKLY
@SerializedName("biweekly")
public static final TransferPeriod BIWEEKLY
@SerializedName("monthly")
public static final TransferPeriod MONTHLY
@SerializedName("semimonthly")
public static final TransferPeriod SEMIMONTHLY
public static TransferPeriod[] values()
for (TransferPeriod c : TransferPeriod.values()) System.out.println(c);
public static TransferPeriod 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 © 2018 The Apache Software Foundation. All rights reserved.