public static enum Git.AllowExitCode extends Enum<Git.AllowExitCode>
| Enum Constant and Description |
|---|
ALL
Allows all exit codes.
|
NONE
Does not allow any exit code (other than 0).
|
ONE
Allows exit code 1 (and 0).
|
| Modifier and Type | Method and Description |
|---|---|
static Git.AllowExitCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Git.AllowExitCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Git.AllowExitCode NONE
public static final Git.AllowExitCode ONE
public static final Git.AllowExitCode ALL
public static Git.AllowExitCode[] values()
for (Git.AllowExitCode c : Git.AllowExitCode.values()) System.out.println(c);
public static Git.AllowExitCode 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–2016 AZYVA INC.. All rights reserved.