Enum Class ResultsManager.ResultType

java.lang.Object
java.lang.Enum<ResultsManager.ResultType>
ro.sync.exml.workspace.api.results.ResultsManager.ResultType
All Implemented Interfaces:
Serializable, Comparable<ResultsManager.ResultType>, Constable
Enclosing interface:
ResultsManager

public static enum ResultsManager.ResultType extends Enum<ResultsManager.ResultType>
The type of the result. One of PROBLEM or GENERIC. It the type is PROBLEM, the results tab will display an icon corresponding to the severity of the results, otherwise it will not.
  • Enum Constant Details

    • PROBLEM

      public static final ResultsManager.ResultType PROBLEM
      The result is a problem. Show different severity icons for infos, warnings and errors.
    • GENERIC

      public static final ResultsManager.ResultType GENERIC
      Generic results. No associated icon.
  • Method Details

    • values

      public static ResultsManager.ResultType[] 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 ResultsManager.ResultType 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