Enum Class UserNotification.Level

java.lang.Object
java.lang.Enum<UserNotification.Level>
org.opentcs.data.notification.UserNotification.Level
All Implemented Interfaces:
Serializable, Comparable<UserNotification.Level>, Constable
Enclosing class:
UserNotification

public static enum UserNotification.Level extends Enum<UserNotification.Level>
Defines the possible message types.
  • Enum Constant Details

    • INFORMATIONAL

      public static final UserNotification.Level INFORMATIONAL
      Marks usual, informational content.
    • NOTEWORTHY

      public static final UserNotification.Level NOTEWORTHY
      Marks unusual content a user would probably be interested in.
    • IMPORTANT

      public static final UserNotification.Level IMPORTANT
      Marks important content the user should not miss.
  • Method Details

    • values

      public static UserNotification.Level[] 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 UserNotification.Level 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