Enum Diagnostic.UserSeverity

java.lang.Object
java.lang.Enum<Diagnostic.UserSeverity>
com.bea.wli.config.resource.Diagnostic.UserSeverity
All Implemented Interfaces:
Serializable, Comparable<Diagnostic.UserSeverity>, java.lang.constant.Constable
Enclosing class:
Diagnostic

public static enum Diagnostic.UserSeverity extends Enum<Diagnostic.UserSeverity>
Describes the user visible severity of the diagnostic message. A user severity can take on only some of the values depending on the actual severity of the diagnostic. For example A severity of CannotCommit implies a user severity of Error, and other user severity levels cannot be used.
  • 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
    A diagnostic message that represents an error in resource data.
    A Diagnostic message that provides user with useful information or hints about the resource.
    A diagnostic message that is generated during import by the version upgrade process and gives more information about how the resource data has been upgraded.
    A diagnostic message that warns the user that even though the resource data may be valid, it could cause certain problem when the resource is activated with this data.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if this UserSeverity is compatible with the given system severity
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

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

  • Method Details

    • values

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

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

      public boolean isCompatibleWith(Diagnostic.Severity s)
      Returns true if this UserSeverity is compatible with the given system severity
      Parameters:
      s -