public static enum SubmoduleWalk.IgnoreSubmoduleMode extends Enum<SubmoduleWalk.IgnoreSubmoduleMode>
Enum Constant and Description |
---|
ALL
Ignore all modifications to submodules
|
DIRTY
Ignore changes to the working tree of a submodule
|
NONE
Ignore nothing.
|
UNTRACKED
Ignore changes to untracked files in the working tree of a submodule
|
Modifier and Type | Method and Description |
---|---|
static SubmoduleWalk.IgnoreSubmoduleMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubmoduleWalk.IgnoreSubmoduleMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubmoduleWalk.IgnoreSubmoduleMode ALL
public static final SubmoduleWalk.IgnoreSubmoduleMode DIRTY
public static final SubmoduleWalk.IgnoreSubmoduleMode UNTRACKED
public static final SubmoduleWalk.IgnoreSubmoduleMode NONE
public static SubmoduleWalk.IgnoreSubmoduleMode[] values()
for (SubmoduleWalk.IgnoreSubmoduleMode c : SubmoduleWalk.IgnoreSubmoduleMode.values()) System.out.println(c);
public static SubmoduleWalk.IgnoreSubmoduleMode 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 © 2017 Eclipse JGit Project. All rights reserved.