public enum JRLevel extends Enum<JRLevel>
| Enum Constant and Description |
|---|
Debug
The Debug.
|
Error
The Error.
|
ErrorPopup
The Error popup.
|
Exception
The Exception.
|
Info
The Info.
|
InfoPopup
The Info popup.
|
Trace
The Trace.
|
Warn
The Warn.
|
WarnPopup
The Warn popup.
|
| Modifier and Type | Method and Description |
|---|---|
static JRLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JRLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JRLevel Trace
public static final JRLevel Debug
public static final JRLevel Info
public static final JRLevel Warn
public static final JRLevel Error
public static final JRLevel WarnPopup
public static final JRLevel ErrorPopup
public static final JRLevel InfoPopup
public static final JRLevel Exception
public static JRLevel[] values()
for (JRLevel c : JRLevel.values()) System.out.println(c);
public static JRLevel 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 © 2011–2015 JRebirth OSS. All rights reserved.