org.terracotta.toolkit.monitoring
Enum OperatorEventLevel
java.lang.Object
java.lang.Enum<OperatorEventLevel>
org.terracotta.toolkit.monitoring.OperatorEventLevel
- All Implemented Interfaces:
- Serializable, Comparable<OperatorEventLevel>
public enum OperatorEventLevel
- extends Enum<OperatorEventLevel>
An enum specifying the level of an operator event
DEBUG
public static final OperatorEventLevel DEBUG
INFO
public static final OperatorEventLevel INFO
WARN
public static final OperatorEventLevel WARN
ERROR
public static final OperatorEventLevel ERROR
CRITICAL
public static final OperatorEventLevel CRITICAL
values
public static OperatorEventLevel[] 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 (OperatorEventLevel c : OperatorEventLevel.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static OperatorEventLevel 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 name
NullPointerException
- if the argument is null
Copyright © 2014 Terracotta, Inc.. All Rights Reserved.