public static enum SolutionPrinter.Print extends Enum<SolutionPrinter.Print>
Print.CONCISE and Print.VERBOSE are available.
| Modifier and Type | Method and Description |
|---|---|
static SolutionPrinter.Print |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SolutionPrinter.Print[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SolutionPrinter.Print CONCISE
public static final SolutionPrinter.Print VERBOSE
public static SolutionPrinter.Print[] values()
for (SolutionPrinter.Print c : SolutionPrinter.Print.values()) System.out.println(c);
public static SolutionPrinter.Print 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 © 2013–2020. All rights reserved.