public static enum RecurrenceRule.Skip extends java.lang.Enum<RecurrenceRule.Skip>
| Enum Constant and Description |
|---|
BACKWARD
BACKWARD means that non-existing instanced get rolled back to the previous day (for leap days) or month (for leap months).
|
FORWARD
FORWARD means that non-existing instanced get rolled forward to the next day (for leap days) or month (for leap months).
|
OMIT
OMIT is the default value.
|
| Modifier and Type | Method and Description |
|---|---|
static RecurrenceRule.Skip |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecurrenceRule.Skip[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurrenceRule.Skip OMIT
public static final RecurrenceRule.Skip BACKWARD
public static final RecurrenceRule.Skip FORWARD
public static RecurrenceRule.Skip[] values()
for (RecurrenceRule.Skip c : RecurrenceRule.Skip.values()) System.out.println(c);
public static RecurrenceRule.Skip 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