public enum StatusCalculationStrategy extends Enum<StatusCalculationStrategy>
| Enum Constant and Description | 
|---|
Alarms
Calculate the status based on alarms. 
 | 
Outages
Calculate the status based on outages. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static StatusCalculationStrategy | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static StatusCalculationStrategy[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final StatusCalculationStrategy Alarms
public static final StatusCalculationStrategy Outages
public static StatusCalculationStrategy[] values()
for (StatusCalculationStrategy c : StatusCalculationStrategy.values()) System.out.println(c);
public static StatusCalculationStrategy 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 © 2020. All rights reserved.