public static enum FieldMetric.Operation extends Enum<FieldMetric.Operation>
| Enum Constant and Description |
|---|
AVG |
CARDINALITY |
COUNT |
MAX |
MIN |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static FieldMetric.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldMetric.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldMetric.Operation AVG
public static final FieldMetric.Operation CARDINALITY
public static final FieldMetric.Operation COUNT
public static final FieldMetric.Operation MAX
public static final FieldMetric.Operation MIN
public static final FieldMetric.Operation SUM
public static FieldMetric.Operation[] values()
for (FieldMetric.Operation c : FieldMetric.Operation.values()) System.out.println(c);
public static FieldMetric.Operation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2020 Graylog, Inc.. All rights reserved.