private static enum JFormatter.Mode extends java.lang.Enum<JFormatter.Mode>
| Enum Constant and Description |
|---|
COLLECTING
Collect all the type names and identifiers.
|
PRINTING
Print the actual source code.
|
| Modifier and Type | Method and Description |
|---|---|
static JFormatter.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JFormatter.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JFormatter.Mode COLLECTING
public static final JFormatter.Mode PRINTING
public static JFormatter.Mode[] values()
for (JFormatter.Mode c : JFormatter.Mode.values()) System.out.println(c);
public static JFormatter.Mode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null