public enum DetailLevel extends Enum<DetailLevel>
| Enum Constant and Description |
|---|
FINE |
FINER |
FINEST |
INFO |
SEVERE |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static DetailLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DetailLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DetailLevel SEVERE
public static final DetailLevel WARNING
public static final DetailLevel INFO
public static final DetailLevel FINE
public static final DetailLevel FINER
public static final DetailLevel FINEST
public static DetailLevel[] values()
for (DetailLevel c : DetailLevel.values()) System.out.println(c);
public static DetailLevel 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 © 2014 LSST. All Rights Reserved.