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