package waymaker.gen; // Copyright © 2015 Michael Allan. Licence MIT. /** Progressive stages in the * life of an activity. These exclude the cyclic operational states such as start and stop. */ public enum ActivityLifeStage { /** Entered when the activity instance begins to initialize. */ INITIALIZING, /** Entered at the start of * onCreate. */ CREATING, /** Entered at the end of * onCreate. */ CREATED, /** Entered at the start of * onDestroy. */ DESTROYING, /** Entered at the end of * onDestroy. */ DESTROYED; }