public enum CompareType extends java.lang.Enum<CompareType>
RTEGitCompareCommand
Enum Constant and Description |
---|
Auto
Detect compare type from selection and settings
|
ClosureCompare
Use closure compare.
|
FileCompare
Use file compare.
|
LogicalCompare
Use logical compare.
|
Modifier and Type | Method and Description |
---|---|
static CompareType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompareType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareType Auto
public static final CompareType FileCompare
public static final CompareType LogicalCompare
public static final CompareType ClosureCompare
public static CompareType[] values()
for (CompareType c : CompareType.values()) System.out.println(c);
public static CompareType 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