public static enum CoreConfig.LogRefUpdates extends Enum<CoreConfig.LogRefUpdates>
core.logAllRefUpdates
.Enum Constant and Description |
---|
ALWAYS
Create ref logs for all refs/** and for HEAD.
|
FALSE
Don't create ref logs; default for bare repositories.
|
TRUE
Create ref logs for refs/heads/**, refs/remotes/**, refs/notes/**,
and for HEAD.
|
Modifier and Type | Method and Description |
---|---|
static CoreConfig.LogRefUpdates |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreConfig.LogRefUpdates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreConfig.LogRefUpdates FALSE
public static final CoreConfig.LogRefUpdates TRUE
public static final CoreConfig.LogRefUpdates ALWAYS
public static CoreConfig.LogRefUpdates[] values()
for (CoreConfig.LogRefUpdates c : CoreConfig.LogRefUpdates.values()) System.out.println(c);
public static CoreConfig.LogRefUpdates 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.