public enum HeaderMode extends Enum<HeaderMode>
Enum Constant and Description |
---|
NONE
Ignore any header present in input, and do not output any header
|
PRESERVE
Use the header loaded from an existing file, replacing any header set in the options
|
PRESET
ignore any header present in input, and output a header if one has been set in options
|
Modifier and Type | Method and Description |
---|---|
static HeaderMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HeaderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeaderMode PRESERVE
public static final HeaderMode PRESET
public static final HeaderMode NONE
public static HeaderMode[] values()
for (HeaderMode c : HeaderMode.values()) System.out.println(c);
public static HeaderMode 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 © 2014–2017. All rights reserved.