public final enum

Situation

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

Class Overview

An enum representing the possible situations for an Action.

Summary

Enum Values
Situation  BACKGROUND_NOTIFICATION_ACTION_BUTTON  Situation where an action is triggered from a background notification action button. 
Situation  FOREGROUND_NOTIFICATION_ACTION_BUTTON  Situation where an action is triggered from a foreground notification action button. 
Situation  MANUAL_INVOCATION  Situation where an action is manually invoked. 
Situation  PUSH_OPENED  Situation where an action is triggered when a push is opened. 
Situation  PUSH_RECEIVED  Situation where an action is triggered when a push is received. 
Situation  WEB_VIEW_INVOCATION  Situation where an action is triggered from a web view. 
Public Methods
static Situation valueOf(String name)
final static Situation[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Situation BACKGROUND_NOTIFICATION_ACTION_BUTTON

Situation where an action is triggered from a background notification action button.

public static final Situation FOREGROUND_NOTIFICATION_ACTION_BUTTON

Situation where an action is triggered from a foreground notification action button.

public static final Situation MANUAL_INVOCATION

Situation where an action is manually invoked.

public static final Situation PUSH_OPENED

Situation where an action is triggered when a push is opened.

public static final Situation PUSH_RECEIVED

Situation where an action is triggered when a push is received.

public static final Situation WEB_VIEW_INVOCATION

Situation where an action is triggered from a web view.

Public Methods

public static Situation valueOf (String name)

public static final Situation[] values ()