Enum Class ModelNotificationLevel

java.lang.Object
java.lang.Enum<ModelNotificationLevel>
dk.gtz.graphedit.model.lsp.ModelNotificationLevel
All Implemented Interfaces:
Serializable, Comparable<ModelNotificationLevel>, Constable

public enum ModelNotificationLevel extends Enum<ModelNotificationLevel>
Enumeration for the severity level of a ModelNotification.
  • Enum Constant Details

    • ERROR

      public static final ModelNotificationLevel ERROR
      Indicates that an unrecoverable error occurred.
    • WARNING

      public static final ModelNotificationLevel WARNING
      Indicates that something potentially wrong occurred.
    • INFO

      public static final ModelNotificationLevel INFO
      Indicates that a notification is informative and not critical.
    • DEBUG

      public static final ModelNotificationLevel DEBUG
      Used for development debugging. Should contain information relevant to developers.
    • TRACE

      public static final ModelNotificationLevel TRACE
      Highly verbose trace information, this can be useful for full understanding of what the system is doing.
  • Method Details

    • values

      public static ModelNotificationLevel[] 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 ModelNotificationLevel 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