Enum Class XmlSeverity

java.lang.Object
java.lang.Enum<XmlSeverity>
com.github.oowekyala.ooxml.messages.XmlSeverity
All Implemented Interfaces:
Serializable, Comparable<XmlSeverity>, Constable

public enum XmlSeverity extends Enum<XmlSeverity>
Severity of a message.
  • Enum Constant Details

    • WARNING

      public static final XmlSeverity WARNING
      A warning, with a yellow color.
    • ERROR

      public static final XmlSeverity ERROR
      An error, with a red color.
  • Field Details

    • displayName

      private final String displayName
  • Constructor Details

    • XmlSeverity

      private XmlSeverity(String displayName)
  • Method Details

    • values

      public static XmlSeverity[] 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 XmlSeverity 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
    • withColor

      public String withColor(String toColor)
      Add a color relevant to this kind to the given string. This uses ANSI escape sequences.
      Parameters:
      toColor - String to surround with escape sequences
      Returns:
      The string, prefixed with an ANSI color, and suffixed with "\\e[0m"
    • toString

      public String toString()
      Overrides:
      toString in class Enum<XmlSeverity>