public enum MercuryLoggingLevelEnum extends Enum<MercuryLoggingLevelEnum>
Enum Constant and Description |
---|
debug |
disabled |
error |
fatal |
info |
warn |
Modifier and Type | Field and Description |
---|---|
static MercuryLoggingLevelEnum |
DEFAULT_LEVEL |
Modifier and Type | Method and Description |
---|---|
static MercuryLoggingLevelEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MercuryLoggingLevelEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MercuryLoggingLevelEnum debug
public static final MercuryLoggingLevelEnum info
public static final MercuryLoggingLevelEnum warn
public static final MercuryLoggingLevelEnum error
public static final MercuryLoggingLevelEnum fatal
public static final MercuryLoggingLevelEnum disabled
public static final MercuryLoggingLevelEnum DEFAULT_LEVEL
public static MercuryLoggingLevelEnum[] values()
for (MercuryLoggingLevelEnum c : MercuryLoggingLevelEnum.values()) System.out.println(c);
public static MercuryLoggingLevelEnum 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 © 2002–2014 The Apache Software Foundation. All rights reserved.