public enum EventLevel extends Enum<EventLevel>
| Enum Constant and Description |
|---|
ALL |
CRITICAL |
MAJOR |
NOTICE |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static EventLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventLevel CRITICAL
public static final EventLevel MAJOR
public static final EventLevel WARNING
public static final EventLevel NOTICE
public static final EventLevel ALL
public static EventLevel[] values()
for (EventLevel c : EventLevel.values()) System.out.println(c);
public static EventLevel 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 getName()
Copyright © 2024. All rights reserved.