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