public static enum Alarm.AggregationMethod extends Enum<Alarm.AggregationMethod>
| Enum Constant and Description |
|---|
COUNT |
MAX |
MEAN |
MIN |
SUM |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static Alarm.AggregationMethod |
fromValue(String method) |
String |
toString() |
String |
value() |
static Alarm.AggregationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Alarm.AggregationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Alarm.AggregationMethod COUNT
public static final Alarm.AggregationMethod MAX
public static final Alarm.AggregationMethod SUM
public static final Alarm.AggregationMethod MIN
public static final Alarm.AggregationMethod MEAN
public static final Alarm.AggregationMethod UNRECOGNIZED
public static Alarm.AggregationMethod[] values()
for (Alarm.AggregationMethod c : Alarm.AggregationMethod.values()) System.out.println(c);
public static Alarm.AggregationMethod 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 nullpublic String value()
public String toString()
toString in class Enum<Alarm.AggregationMethod>public static Alarm.AggregationMethod fromValue(String method)
Copyright © 2019. All rights reserved.