public enum RLOGLevel extends Enum<RLOGLevel>
RLOGLevel class.
| Enum Constant and Description |
|---|
ALL
ALL: The ALL has the lowest possible rank and is intended to turn on all logging.
|
DEBUG
TRACE: The DEBUG Level designates fine-grained informational events that are most useful to debug an application.
|
ERROR
ERROR: The ERROR level designates error events that might still allow the application to continue running.
|
FATAL
FATAL: The FATAL level designates very severe error events that will presumably lead the application to abort.
|
INFO
INFO: The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
|
OFF
OFF: The OFF has the highest possible rank and is intended to turn off logging.
|
TRACE
TRACE: The TRACE Level designates finer-grained informational events than the DEBUG.
|
WARN
WARN: The WARN level designates potentially harmful situations.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getUri()
getUri.
|
static RLOGLevel |
resolve(String value)
Resolves a full URI/IRI to an enum
|
String |
toString() |
static RLOGLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RLOGLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RLOGLevel ERROR
public static final RLOGLevel DEBUG
public static final RLOGLevel OFF
public static final RLOGLevel FATAL
public static final RLOGLevel WARN
public static final RLOGLevel TRACE
public static final RLOGLevel INFO
public static final RLOGLevel ALL
public static RLOGLevel[] values()
for (RLOGLevel c : RLOGLevel.values()) System.out.println(c);
public static RLOGLevel 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 getUri()
getUri.
Copyright © 2015. All rights reserved.