public enum HealthMonitorLevel extends Enum<HealthMonitorLevel>
GroupProperty.HEALTH_MONITORING_LEVEL| Enum Constant and Description | 
|---|
NOISY
Does not check threshold, always prints. 
 | 
OFF
Does not print anything. 
 | 
SILENT
(default) Prints only if metrics are above threshold. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static HealthMonitorLevel | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static HealthMonitorLevel[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final HealthMonitorLevel OFF
public static final HealthMonitorLevel SILENT
public static final HealthMonitorLevel NOISY
public static HealthMonitorLevel[] values()
for (HealthMonitorLevel c : HealthMonitorLevel.values()) System.out.println(c);
public static HealthMonitorLevel 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 © 2018 Hazelcast, Inc.. All Rights Reserved.