public static enum AstTreeStringPrinter.PrintOptions extends Enum<AstTreeStringPrinter.PrintOptions>
| Enum Constant and Description |
|---|
WITH_COMMENTS
Comments has to be printed.
|
WITHOUT_COMMENTS
Comments has NOT to be printed.
|
| Modifier and Type | Method and Description |
|---|---|
static AstTreeStringPrinter.PrintOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AstTreeStringPrinter.PrintOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AstTreeStringPrinter.PrintOptions WITH_COMMENTS
public static final AstTreeStringPrinter.PrintOptions WITHOUT_COMMENTS
public static AstTreeStringPrinter.PrintOptions[] values()
for (AstTreeStringPrinter.PrintOptions c : AstTreeStringPrinter.PrintOptions.values()) System.out.println(c);
public static AstTreeStringPrinter.PrintOptions 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 © 2001-2017. All Rights Reserved.