public enum RecurrencePatternType extends Enum<RecurrencePatternType> implements com.github.davidmoten.odata.client.Enum
| Enum Constant and Description |
|---|
ABSOLUTE_MONTHLY |
ABSOLUTE_YEARLY |
DAILY |
RELATIVE_MONTHLY |
RELATIVE_YEARLY |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
String |
enumName() |
String |
enumValue() |
static RecurrencePatternType |
valueOf(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 RecurrencePatternType[] values()
for (RecurrencePatternType c : RecurrencePatternType.values()) System.out.println(c);
public static RecurrencePatternType 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 nullpublic String enumName()
enumName in interface com.github.davidmoten.odata.client.Enumpublic String enumValue()
enumValue in interface com.github.davidmoten.odata.client.EnumCopyright © 2018–2020. All rights reserved.