public enum RecurrenceFreq extends Enum<RecurrenceFreq>
Enum Constant and Description |
---|
DAILY |
UNKNOWN_TO_SDK_VERSION |
WEEKLY |
Modifier and Type | Method and Description |
---|---|
static RecurrenceFreq |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static RecurrenceFreq |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecurrenceFreq[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurrenceFreq WEEKLY
public static final RecurrenceFreq DAILY
public static final RecurrenceFreq UNKNOWN_TO_SDK_VERSION
public static RecurrenceFreq[] values()
for (RecurrenceFreq c : RecurrenceFreq.values()) System.out.println(c);
public static RecurrenceFreq 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 getValue()
public String toString()
toString
in class Enum<RecurrenceFreq>
public static RecurrenceFreq fromValue(String text)
Copyright © 2023. All rights reserved.