public final enum

ApplicationStage

extends Enum<ApplicationStage>
java.lang.Object
   ↳ java.lang.Enum<android.support.test.runner.lifecycle.ApplicationStage>
     ↳ android.support.test.runner.lifecycle.ApplicationStage

Class Overview

An enumeration of the lifecycle stages an application undergoes that can be monitored.

See the Application javadoc for detailed documentation.

Summary

Enum Values
ApplicationStage  CREATED  Indicates that onCreate has finished. 
ApplicationStage  PRE_ON_CREATE  Indicates that onCreate is being called before any onCreate code executes. 
Public Methods
static ApplicationStage valueOf(String name)
static final ApplicationStage[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ApplicationStage CREATED

Indicates that onCreate has finished.

public static final ApplicationStage PRE_ON_CREATE

Indicates that onCreate is being called before any onCreate code executes.

Public Methods

public static ApplicationStage valueOf (String name)

Parameters
name String
Returns
ApplicationStage

public static final ApplicationStage[] values ()