public static enum LPcLogger.LogLevel extends Enum<LPcLogger.LogLevel>
| Modifier and Type | Method and Description |
|---|---|
static LPcLogger.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LPcLogger.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LPcLogger.LogLevel DEBUG
public static final LPcLogger.LogLevel INFO
public static final LPcLogger.LogLevel WARNING
public static final LPcLogger.LogLevel ERROR
public static LPcLogger.LogLevel[] values()
for (LPcLogger.LogLevel c : LPcLogger.LogLevel.values()) System.out.println(c);
public static LPcLogger.LogLevel 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 © 2019 Philip Heyse. All rights reserved.