public static enum ConflictOption.OptionType extends Enum<ConflictOption.OptionType>
| Enum Constant and Description |
|---|
Custom |
MergeText |
MyOperation |
TheirOperation |
| Modifier and Type | Method and Description |
|---|---|
static ConflictOption.OptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConflictOption.OptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictOption.OptionType MyOperation
public static final ConflictOption.OptionType TheirOperation
public static final ConflictOption.OptionType MergeText
public static final ConflictOption.OptionType Custom
public static ConflictOption.OptionType[] values()
for (ConflictOption.OptionType c : ConflictOption.OptionType.values()) System.out.println(c);
public static ConflictOption.OptionType 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. All rights reserved.