public enum MergeToolResult extends Enum<MergeToolResult>
RTEGitMergeToolCommand.MergeCompletionCallback
Enum Constant and Description |
---|
CLOSED
Indicates that merge editor was closed.
|
COMMITTED
Indicates that user closed merge editor with 'commit' button.
|
FAILED
Indicates that merge editor cannot be opened
|
Modifier and Type | Method and Description |
---|---|
static MergeToolResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeToolResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeToolResult COMMITTED
public static final MergeToolResult CLOSED
public static final MergeToolResult FAILED
public static MergeToolResult[] values()
for (MergeToolResult c : MergeToolResult.values()) System.out.println(c);
public static MergeToolResult 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 null