public enum DefaultAccountHistoryPeriod extends java.lang.Enum<DefaultAccountHistoryPeriod>
| Enum Constant and Description |
|---|
ALL_TIME |
CURRENT_MONTH |
CURRENT_WEEK |
CURRENT_YEAR |
LAST_12_MONTHS |
LAST_3_MONTHS |
LAST_MONTH |
TODAY |
| Modifier and Type | Method and Description |
|---|---|
static DefaultAccountHistoryPeriod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefaultAccountHistoryPeriod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultAccountHistoryPeriod TODAY
public static final DefaultAccountHistoryPeriod CURRENT_WEEK
public static final DefaultAccountHistoryPeriod LAST_MONTH
public static final DefaultAccountHistoryPeriod LAST_3_MONTHS
public static final DefaultAccountHistoryPeriod LAST_12_MONTHS
public static final DefaultAccountHistoryPeriod CURRENT_MONTH
public static final DefaultAccountHistoryPeriod CURRENT_YEAR
public static final DefaultAccountHistoryPeriod ALL_TIME
public static DefaultAccountHistoryPeriod[] values()
for (DefaultAccountHistoryPeriod c : DefaultAccountHistoryPeriod.values()) System.out.println(c);
public static DefaultAccountHistoryPeriod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null