public static final enum

ActionResult.Status

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.urbanairship.actions.ActionResult.Status

Class Overview

The run status of the action.

Summary

Enum Values
ActionResult.Status  ACTION_NOT_FOUND  The action was not performed because the action was not found in the ActionRegistry
ActionResult.Status  COMPLETED  The action accepted the arguments and executed without an exception. 
ActionResult.Status  EXECUTION_ERROR  The action encountered a runtime exception during execution. 
ActionResult.Status  REJECTED_ARGUMENTS  The action was not performed because the arguments were rejected by either the predicate in the registry or the action. 
Public Methods
static ActionResult.Status valueOf(String name)
final static Status[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ActionResult.Status ACTION_NOT_FOUND

The action was not performed because the action was not found in the ActionRegistry. This value is only possible if trying to run an action by name through the ActionRunRequestFactory.

public static final ActionResult.Status COMPLETED

The action accepted the arguments and executed without an exception.

public static final ActionResult.Status EXECUTION_ERROR

The action encountered a runtime exception during execution. The exception field will contain the caught exception.

public static final ActionResult.Status REJECTED_ARGUMENTS

The action was not performed because the arguments were rejected by either the predicate in the registry or the action.

Public Methods

public static ActionResult.Status valueOf (String name)

public static final Status[] values ()