- All Implemented Interfaces:
Serializable,Comparable<IConstraint.Level>
- Enclosing interface:
- IConstraint
The degree to which a constraint violation is significant.
These values are ordered from least significant to most significant.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA violation of the constraint represents a serious fault in the content that will prevent typical use of the content.A violation of the constraint represents a fault in the content that may warrant review by a developer when performing model or tool development.A violation of the constraint represents a fault in the content.A violation of the constraint represents a point of interest.No violation.A violation of the constraint represents a potential issue with the content. -
Method Summary
Modifier and TypeMethodDescriptionstatic IConstraint.LevelReturns the enum constant of this type with the specified name.static IConstraint.Level[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
No violation. -
INFORMATIONAL
A violation of the constraint represents a point of interest. -
DEBUG
A violation of the constraint represents a fault in the content that may warrant review by a developer when performing model or tool development. -
WARNING
A violation of the constraint represents a potential issue with the content. -
ERROR
A violation of the constraint represents a fault in the content. This may include issues around compatibility, integrity, consistency, etc. -
CRITICAL
A violation of the constraint represents a serious fault in the content that will prevent typical use of the content.
-
-
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
-