public enum RecurrencePatternType extends java.lang.Enum<RecurrencePatternType>
| Enum Constant and Description |
|---|
ABSOLUTE_MONTHLY
absolute Monthly
|
ABSOLUTE_YEARLY
absolute Yearly
|
DAILY
daily
|
RELATIVE_MONTHLY
relative Monthly
|
RELATIVE_YEARLY
relative Yearly
|
UNEXPECTED_VALUE
For RecurrencePatternType values that were not expected from the service
|
WEEKLY
weekly
|
| Modifier and Type | Method and Description |
|---|---|
static RecurrencePatternType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecurrencePatternType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurrencePatternType DAILY
public static final RecurrencePatternType WEEKLY
public static final RecurrencePatternType ABSOLUTE_MONTHLY
public static final RecurrencePatternType RELATIVE_MONTHLY
public static final RecurrencePatternType ABSOLUTE_YEARLY
public static final RecurrencePatternType RELATIVE_YEARLY
public static final RecurrencePatternType UNEXPECTED_VALUE
public static RecurrencePatternType[] values()
for (RecurrencePatternType c : RecurrencePatternType.values()) System.out.println(c);
public static RecurrencePatternType 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