public final enum

ShareState

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ co.megacool.megacool.ShareState

Class Overview

Different states a share can be in. All shares start as SENT, becomes CLICKED, and then becomes either OPENED or INSTALLED.

Summary

Enum Values
ShareState  CLICKED  The share link has been clicked. 
ShareState  INSTALLED  The share led to a new user installing the app. 
ShareState  OPENED  The share led to an existing user opening the app. 
ShareState  SENT  The share has been sent. 
Public Methods
static ShareState valueOf(String name)
final static ShareState[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ShareState CLICKED

The share link has been clicked. This can lead to OPENED, INSTALLED. If this state remains, assume that the receiver didn't complete an install.

public static final ShareState INSTALLED

The share led to a new user installing the app.

public static final ShareState OPENED

The share led to an existing user opening the app.

public static final ShareState SENT

The share has been sent. This is the default state of a share until something happens with the link.

Public Methods

public static ShareState valueOf (String name)

public static final ShareState[] values ()