public static enum RecursiveMergerTest.IndexState extends Enum<RecursiveMergerTest.IndexState>
Enum Constant and Description |
---|
Bare |
DifferentFromHeadAndOtherAndWorktree |
Missing |
SameAsHead |
SameAsOther |
SameAsWorkTree |
Modifier and Type | Method and Description |
---|---|
static RecursiveMergerTest.IndexState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecursiveMergerTest.IndexState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecursiveMergerTest.IndexState Bare
public static final RecursiveMergerTest.IndexState Missing
public static final RecursiveMergerTest.IndexState SameAsHead
public static final RecursiveMergerTest.IndexState SameAsOther
public static final RecursiveMergerTest.IndexState SameAsWorkTree
public static final RecursiveMergerTest.IndexState DifferentFromHeadAndOtherAndWorktree
public static RecursiveMergerTest.IndexState[] values()
for (RecursiveMergerTest.IndexState c : RecursiveMergerTest.IndexState.values()) System.out.println(c);
public static RecursiveMergerTest.IndexState 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.