Enum TimeAggregationType
- java.lang.Object
-
- java.lang.Enum<TimeAggregationType>
-
- com.azure.resourcemanager.monitor.models.TimeAggregationType
-
- All Implemented Interfaces:
Serializable,Comparable<TimeAggregationType>
public enum TimeAggregationType extends Enum<TimeAggregationType>
Defines values for TimeAggregationType.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TimeAggregationTypefromString(String value)Parses a serialized value to a TimeAggregationType instance.StringtoString()static TimeAggregationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TimeAggregationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVERAGE
public static final TimeAggregationType AVERAGE
Enum value Average.
-
MINIMUM
public static final TimeAggregationType MINIMUM
Enum value Minimum.
-
MAXIMUM
public static final TimeAggregationType MAXIMUM
Enum value Maximum.
-
TOTAL
public static final TimeAggregationType TOTAL
Enum value Total.
-
COUNT
public static final TimeAggregationType COUNT
Enum value Count.
-
LAST
public static final TimeAggregationType LAST
Enum value Last.
-
-
Method Detail
-
values
public static TimeAggregationType[] 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 (TimeAggregationType c : TimeAggregationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeAggregationType 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 TimeAggregationType fromString(String value)
Parses a serialized value to a TimeAggregationType instance.- Parameters:
value- the serialized value to parse.- Returns:
- the parsed TimeAggregationType object, or null if unable to parse.
-
toString
public String toString()
- Overrides:
toStringin classEnum<TimeAggregationType>
-
-