Package w.eventbus

Enum Class PostOrder

All Implemented Interfaces:
Serializable, Comparable<PostOrder>, Constable

public enum PostOrder extends Enum<PostOrder>
Author:
whilein
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Выполняется после NORMAL
    Выполняется позже всех
    Выполняется после LOWEST
    Выполняется раньше всех
    Выполняется для отслеживания финальных состояний событий, не рекомендуется изменять событие в данном приоритете, поскольку
    Выполняется после LOW, используется по умолчанию
  • Method Summary

    Modifier and Type
    Method
    Description
    static PostOrder
    Returns the enum constant of this class with the specified name.
    static PostOrder[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

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

    • LOWEST

      public static final PostOrder LOWEST
      Выполняется раньше всех
    • LOW

      public static final PostOrder LOW
      Выполняется после LOWEST
    • NORMAL

      public static final PostOrder NORMAL
      Выполняется после LOW, используется по умолчанию
    • HIGH

      public static final PostOrder HIGH
      Выполняется после NORMAL
    • HIGHEST

      public static final PostOrder HIGHEST
      Выполняется позже всех
    • MONITOR

      public static final PostOrder MONITOR
      Выполняется для отслеживания финальных состояний событий, не рекомендуется изменять событие в данном приоритете, поскольку
  • Method Details

    • values

      public static PostOrder[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PostOrder valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null