Enum RecurrenceFrequency
- java.lang.Object
-
- java.lang.Enum<RecurrenceFrequency>
-
- com.azure.resourcemanager.monitor.models.RecurrenceFrequency
-
- All Implemented Interfaces:
Serializable,Comparable<RecurrenceFrequency>
public enum RecurrenceFrequency extends Enum<RecurrenceFrequency>
Defines values for RecurrenceFrequency.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RecurrenceFrequencyfromString(String value)Parses a serialized value to a RecurrenceFrequency instance.StringtoString()static RecurrenceFrequencyvalueOf(String name)Returns the enum constant of this type with the specified name.static RecurrenceFrequency[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final RecurrenceFrequency NONE
Enum value None.
-
SECOND
public static final RecurrenceFrequency SECOND
Enum value Second.
-
MINUTE
public static final RecurrenceFrequency MINUTE
Enum value Minute.
-
HOUR
public static final RecurrenceFrequency HOUR
Enum value Hour.
-
DAY
public static final RecurrenceFrequency DAY
Enum value Day.
-
WEEK
public static final RecurrenceFrequency WEEK
Enum value Week.
-
MONTH
public static final RecurrenceFrequency MONTH
Enum value Month.
-
YEAR
public static final RecurrenceFrequency YEAR
Enum value Year.
-
-
Method Detail
-
values
public static RecurrenceFrequency[] 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 (RecurrenceFrequency c : RecurrenceFrequency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecurrenceFrequency 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
-
fromString
public static RecurrenceFrequency fromString(String value)
Parses a serialized value to a RecurrenceFrequency instance.- Parameters:
value- the serialized value to parse.- Returns:
- the parsed RecurrenceFrequency object, or null if unable to parse.
-
toString
public String toString()
- Overrides:
toStringin classEnum<RecurrenceFrequency>
-
-