public static enum CoreConfig.AutoCRLF extends Enum<CoreConfig.AutoCRLF>
core.autocrlf
.Enum Constant and Description |
---|
FALSE
Automatic CRLF->LF conversion is disabled.
|
INPUT
CRLF->LF performed, but no LF->CRLF.
|
TRUE
Automatic CRLF->LF conversion is enabled.
|
Modifier and Type | Method and Description |
---|---|
static CoreConfig.AutoCRLF |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreConfig.AutoCRLF[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreConfig.AutoCRLF FALSE
public static final CoreConfig.AutoCRLF TRUE
public static final CoreConfig.AutoCRLF INPUT
public static CoreConfig.AutoCRLF[] values()
for (CoreConfig.AutoCRLF c : CoreConfig.AutoCRLF.values()) System.out.println(c);
public static CoreConfig.AutoCRLF 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. All rights reserved.