public static enum PKILogger.Level extends java.lang.Enum<PKILogger.Level>
Modifier and Type | Method and Description |
---|---|
static PKILogger.Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PKILogger.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PKILogger.Level ERROR
public static final PKILogger.Level WARN
public static final PKILogger.Level INFO
public static final PKILogger.Level DEBUG
public static final PKILogger.Level TRACE
public static PKILogger.Level[] values()
for (PKILogger.Level c : PKILogger.Level.values()) System.out.println(c);
public static PKILogger.Level valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null