Package com.bea.wli.config.resource
Enum Diagnostic.UserSeverity
- All Implemented Interfaces:
Serializable
,Comparable<Diagnostic.UserSeverity>
,java.lang.constant.Constable
- Enclosing class:
- Diagnostic
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 ConstantsEnum ConstantDescriptionA 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 TypeMethodDescriptionboolean
Returns true if this UserSeverity is compatible with the given system severitystatic Diagnostic.UserSeverity
Returns the enum constant of this type with the specified name.static Diagnostic.UserSeverity[]
values()
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
-
Enum Constant Details
-
Info
A Diagnostic message that provides user with useful information or hints about the resource. This user severity level implies that system severity isDiagnostic.Severity.Valid
-
Upgrade
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. This user severity level implies that system severity isDiagnostic.Severity.Valid
-
Warning
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. This user severity level implies that system severity isDiagnostic.Severity.Valid
-
Error
A diagnostic message that represents an error in resource data. This user severity level implies that the system severity is eitherDiagnostic.Severity.CannotCommit
orDiagnostic.Severity.CannotCreate
.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
isCompatibleWith
Returns true if this UserSeverity is compatible with the given system severity- Parameters:
s
-
-