Enum CalendarRepeatRule.Frequency
- java.lang.Object
-
- java.lang.Enum<CalendarRepeatRule.Frequency>
-
- org.prebid.mobile.rendering.sdk.calendar.CalendarRepeatRule.Frequency
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CalendarRepeatRule.Frequency>
- Enclosing class:
- CalendarRepeatRule
public static enum CalendarRepeatRule.Frequency extends java.lang.Enum<CalendarRepeatRule.Frequency>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CalendarRepeatRule.FrequencyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CalendarRepeatRule.Frequency[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAILY
public static final CalendarRepeatRule.Frequency DAILY
-
WEEKLY
public static final CalendarRepeatRule.Frequency WEEKLY
-
MONTHLY
public static final CalendarRepeatRule.Frequency MONTHLY
-
YEARLY
public static final CalendarRepeatRule.Frequency YEARLY
-
UNKNOWN
public static final CalendarRepeatRule.Frequency UNKNOWN
-
-
Method Detail
-
values
public static CalendarRepeatRule.Frequency[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CalendarRepeatRule.Frequency c : CalendarRepeatRule.Frequency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CalendarRepeatRule.Frequency valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-