public static enum TextOutputFormatter.LineNumberMode extends java.lang.Enum<TextOutputFormatter.LineNumberMode>
| Enum Constant and Description |
|---|
WITH_DEBUG_LINE_NUMBERS |
WITHOUT_DEBUG_LINE_NUMBERS |
| Modifier and Type | Method and Description |
|---|---|
static TextOutputFormatter.LineNumberMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextOutputFormatter.LineNumberMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextOutputFormatter.LineNumberMode WITH_DEBUG_LINE_NUMBERS
public static final TextOutputFormatter.LineNumberMode WITHOUT_DEBUG_LINE_NUMBERS
public static TextOutputFormatter.LineNumberMode[] values()
for (TextOutputFormatter.LineNumberMode c : TextOutputFormatter.LineNumberMode.values()) System.out.println(c);
public static TextOutputFormatter.LineNumberMode 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