Enum LifecycleEvent

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      PAUSE
      The PAUSE event is fired when an application loses focus (e.g.
      RESUME
      Once an application is paused, when it is brought back as the primary application, it is considered to have resumed.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static LifecycleEvent valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static LifecycleEvent[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • PAUSE

        public static final LifecycleEvent PAUSE
        The PAUSE event is fired when an application loses focus (e.g. on Android / iOS when the focus is switched out of view (but still running in the background)).
      • RESUME

        public static final LifecycleEvent RESUME
        Once an application is paused, when it is brought back as the primary application, it is considered to have resumed. This RESUME event will fire at that point in time.
    • Method Detail

      • values

        public static LifecycleEvent[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (LifecycleEvent c : LifecycleEvent.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LifecycleEvent valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null