Enum NuxeoDatadogReporter.Expansion
- java.lang.Object
-
- java.lang.Enum<NuxeoDatadogReporter.Expansion>
-
- org.nuxeo.runtime.metrics.reporter.patch.NuxeoDatadogReporter.Expansion
-
- All Implemented Interfaces:
Serializable
,Comparable<NuxeoDatadogReporter.Expansion>
- Enclosing class:
- NuxeoDatadogReporter
public static enum NuxeoDatadogReporter.Expansion extends Enum<NuxeoDatadogReporter.Expansion>
-
-
Field Summary
Fields Modifier and Type Field Description static EnumSet<NuxeoDatadogReporter.Expansion>
ALL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static NuxeoDatadogReporter.Expansion
valueOf(String name)
Returns the enum constant of this type with the specified name.static NuxeoDatadogReporter.Expansion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COUNT
public static final NuxeoDatadogReporter.Expansion COUNT
-
RATE_MEAN
public static final NuxeoDatadogReporter.Expansion RATE_MEAN
-
RATE_1_MINUTE
public static final NuxeoDatadogReporter.Expansion RATE_1_MINUTE
-
RATE_5_MINUTE
public static final NuxeoDatadogReporter.Expansion RATE_5_MINUTE
-
RATE_15_MINUTE
public static final NuxeoDatadogReporter.Expansion RATE_15_MINUTE
-
MIN
public static final NuxeoDatadogReporter.Expansion MIN
-
MEAN
public static final NuxeoDatadogReporter.Expansion MEAN
-
MAX
public static final NuxeoDatadogReporter.Expansion MAX
-
STD_DEV
public static final NuxeoDatadogReporter.Expansion STD_DEV
-
MEDIAN
public static final NuxeoDatadogReporter.Expansion MEDIAN
-
P75
public static final NuxeoDatadogReporter.Expansion P75
-
P95
public static final NuxeoDatadogReporter.Expansion P95
-
P98
public static final NuxeoDatadogReporter.Expansion P98
-
P99
public static final NuxeoDatadogReporter.Expansion P99
-
P999
public static final NuxeoDatadogReporter.Expansion P999
-
SUM
public static final NuxeoDatadogReporter.Expansion SUM
-
-
Field Detail
-
ALL
public static EnumSet<NuxeoDatadogReporter.Expansion> ALL
-
-
Method Detail
-
values
public static NuxeoDatadogReporter.Expansion[] 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 (NuxeoDatadogReporter.Expansion c : NuxeoDatadogReporter.Expansion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NuxeoDatadogReporter.Expansion 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<NuxeoDatadogReporter.Expansion>
-
-