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