public static enum CoreConfig.EolStreamType extends Enum<CoreConfig.EolStreamType>
| Enum Constant and Description |
|---|
AUTO_CRLF
convert to CRLF with binary detection
|
AUTO_LF
convert to LF with binary detection
|
DIRECT
do not convert
|
TEXT_CRLF
convert to CRLF without binary detection
|
TEXT_LF
convert to LF without binary detection
|
| Modifier and Type | Method and Description |
|---|---|
static CoreConfig.EolStreamType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreConfig.EolStreamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreConfig.EolStreamType TEXT_CRLF
public static final CoreConfig.EolStreamType TEXT_LF
public static final CoreConfig.EolStreamType AUTO_CRLF
public static final CoreConfig.EolStreamType AUTO_LF
public static final CoreConfig.EolStreamType DIRECT
public static CoreConfig.EolStreamType[] values()
for (CoreConfig.EolStreamType c : CoreConfig.EolStreamType.values()) System.out.println(c);
public static CoreConfig.EolStreamType 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 © 2018 Eclipse JGit Project. All rights reserved.