Package odata.msgraph.client.beta.enums
Enum RecurrencePatternType
- java.lang.Object
-
- java.lang.Enum<RecurrencePatternType>
-
- odata.msgraph.client.beta.enums.RecurrencePatternType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<RecurrencePatternType>
public enum RecurrencePatternType extends Enum<RecurrencePatternType> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSOLUTE_MONTHLYABSOLUTE_YEARLYDAILYRELATIVE_MONTHLYRELATIVE_YEARLYWEEKLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static RecurrencePatternTypevalueOf(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.
-
-
-
Enum Constant Detail
-
DAILY
public static final RecurrencePatternType DAILY
-
WEEKLY
public static final RecurrencePatternType WEEKLY
-
ABSOLUTE_MONTHLY
public static final RecurrencePatternType ABSOLUTE_MONTHLY
-
RELATIVE_MONTHLY
public static final RecurrencePatternType RELATIVE_MONTHLY
-
ABSOLUTE_YEARLY
public static final RecurrencePatternType ABSOLUTE_YEARLY
-
RELATIVE_YEARLY
public static final RecurrencePatternType RELATIVE_YEARLY
-
-
Method Detail
-
values
public static RecurrencePatternType[] 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 (RecurrencePatternType c : RecurrencePatternType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecurrencePatternType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-