public static enum CommitResult.CommitStatus extends Enum<CommitResult.CommitStatus>
| Enum Constant and Description | 
|---|
FAILED
The updates could not be committed to the remote repository. 
 | 
SUCCESSFUL
All the updates were successfully committed to the remote repository. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static CommitResult.CommitStatus | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static CommitResult.CommitStatus[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final CommitResult.CommitStatus SUCCESSFUL
public static final CommitResult.CommitStatus FAILED
public static CommitResult.CommitStatus[] values()
for (CommitResult.CommitStatus c : CommitResult.CommitStatus.values()) System.out.println(c);
public static CommitResult.CommitStatus 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 © 2019. All rights reserved.