public static enum JarClassLoader.LogArea extends Enum<JarClassLoader.LogArea>
Enum Constant and Description |
---|
ALL
Enable all logging areas.
|
CLASS
Enable class loading related logging.
|
CONFIG
Configuration related logging.
|
JAR
Enable JAR related logging.
|
NATIVE
Enable native libraries loading related logging.
|
RESOURCE
Enable resource loading related logging.
|
Modifier and Type | Method and Description |
---|---|
static JarClassLoader.LogArea |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JarClassLoader.LogArea[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JarClassLoader.LogArea ALL
public static final JarClassLoader.LogArea CONFIG
public static final JarClassLoader.LogArea JAR
public static final JarClassLoader.LogArea CLASS
public static final JarClassLoader.LogArea RESOURCE
public static final JarClassLoader.LogArea NATIVE
public static JarClassLoader.LogArea[] values()
for (JarClassLoader.LogArea c : JarClassLoader.LogArea.values()) System.out.println(c);
public static JarClassLoader.LogArea 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 © 2013. All Rights Reserved.