Package com.wavefront.api.agent
Enum MetricStage
- java.lang.Object
-
- java.lang.Enum<MetricStage>
-
- com.wavefront.api.agent.MetricStage
-
- All Implemented Interfaces:
Serializable,Comparable<MetricStage>
public enum MetricStage extends Enum<MetricStage>
What stage of development is this metric in? This is intended for public consumption.- Author:
- Clement Pang (clement@wavefront.com)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetricStagevalueOf(String name)Returns the enum constant of this type with the specified name.static MetricStage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRIAL
public static final MetricStage TRIAL
-
PER_FETCH
public static final MetricStage PER_FETCH
-
ACTIVE
public static final MetricStage ACTIVE
-
-
Method Detail
-
values
public static MetricStage[] 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 (MetricStage c : MetricStage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetricStage 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
-
-