public enum RecurrenceRangeType extends java.lang.Enum<RecurrenceRangeType>
| Enum Constant and Description |
|---|
END_DATE
end Date
|
NO_END
no End
|
NUMBERED
numbered
|
UNEXPECTED_VALUE
For RecurrenceRangeType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static RecurrenceRangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecurrenceRangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurrenceRangeType END_DATE
public static final RecurrenceRangeType NO_END
public static final RecurrenceRangeType NUMBERED
public static final RecurrenceRangeType UNEXPECTED_VALUE
public static RecurrenceRangeType[] values()
for (RecurrenceRangeType c : RecurrenceRangeType.values()) System.out.println(c);
public static RecurrenceRangeType 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