public static enum Conflicts.Resolution extends java.lang.Enum<Conflicts.Resolution>
Enum Constant and Description |
---|
LEFT_WINS |
MERGE |
RIGHT_WINS |
Modifier and Type | Method and Description |
---|---|
static Conflicts.Resolution |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Conflicts.Resolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conflicts.Resolution LEFT_WINS
public static final Conflicts.Resolution MERGE
public static final Conflicts.Resolution RIGHT_WINS
public static Conflicts.Resolution[] values()
for (Conflicts.Resolution c : Conflicts.Resolution.values()) System.out.println(c);
public static Conflicts.Resolution 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 nullCopyright © 2016 The Apache Software Foundation