public final enum

CommandResult

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.scm.CommandResult

Class Overview

Enumerates the possible results of running a command.

Summary

Enum Values
CommandResult  CANCELED  The command was canceled, either by the requester or because it timed out. 
CommandResult  FAILED  The command failed. 
CommandResult  SUCCEEDED  The command succeeded. 
Public Methods
static CommandResult valueOf(String name)
final static CommandResult[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final CommandResult CANCELED

The command was canceled, either by the requester or because it timed out. The process of canceling the command may have also caused other failures. If so, the system is ignoring them.

public static final CommandResult FAILED

The command failed. This may mean it was never started due to environment or resource problems, or that it started and encountered an error during execution.

public static final CommandResult SUCCEEDED

The command succeeded.

Public Methods

public static CommandResult valueOf (String name)

public static final CommandResult[] values ()