public static enum CoreConfig.EOL extends Enum<CoreConfig.EOL>
core.eol
.
https://git-scm.com/docs/gitattributes
Enum Constant and Description |
---|
CRLF
checkin with LF, checkout with CRLF.
|
LF
checkin with LF, checkout without conversion.
|
NATIVE
use the platform's native line ending.
|
Modifier and Type | Method and Description |
---|---|
static CoreConfig.EOL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreConfig.EOL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreConfig.EOL CRLF
public static final CoreConfig.EOL LF
public static final CoreConfig.EOL NATIVE
public static CoreConfig.EOL[] values()
for (CoreConfig.EOL c : CoreConfig.EOL.values()) System.out.println(c);
public static CoreConfig.EOL 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 © 2016 Eclipse JGit Project. All rights reserved.