public static enum SubmoduleWalk.IgnoreSubmoduleMode extends java.lang.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(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null