public static enum TransferConfig.FsckMode extends Enum<TransferConfig.FsckMode>
Enum Constant and Description |
---|
ERROR
Treat it as an error (the default).
|
IGNORE
Ignore the error.
|
WARN
Issue a warning (in fact, jgit treats this like IGNORE, but git itself does warn).
|
Modifier and Type | Method and Description |
---|---|
static TransferConfig.FsckMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransferConfig.FsckMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferConfig.FsckMode ERROR
public static final TransferConfig.FsckMode WARN
public static final TransferConfig.FsckMode IGNORE
public static TransferConfig.FsckMode[] values()
for (TransferConfig.FsckMode c : TransferConfig.FsckMode.values()) System.out.println(c);
public static TransferConfig.FsckMode 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 © 2020 Eclipse JGit Project. All rights reserved.