public static enum ProcessResult.Status extends Enum<ProcessResult.Status>
Enum Constant and Description |
---|
NOT_PRESENT
The script was not found on disk and thus could not be launched.
|
NOT_SUPPORTED
The script was found but could not be launched since it was not
supported by the current
FS . |
OK
The script was found and launched properly.
|
Modifier and Type | Method and Description |
---|---|
static ProcessResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessResult.Status OK
ProcessResult.exitCode
.public static final ProcessResult.Status NOT_PRESENT
public static final ProcessResult.Status NOT_SUPPORTED
FS
.public static ProcessResult.Status[] values()
for (ProcessResult.Status c : ProcessResult.Status.values()) System.out.println(c);
public static ProcessResult.Status 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 © 2015 Eclipse JGit Project. All rights reserved.