public enum ValidationMessageType extends java.lang.Enum<ValidationMessageType>
ReqIFArchive.load(java.lang.String, java.util.function.Consumer<com.reqdesign.reqif.ValidationMessage>)
.Enum Constant and Description |
---|
IMPLEMENTATION_GUIDE
Indicates non-compliance with a rule specified in the ReqIF Implementation Guide but
nevertheless compliant with the standard
|
STANDARDS_DOCUMENT
Indicates non-compliance with a rule specified in the standards document that is not
covered by the XSD validation
|
XSD
Indicates XSD schema validation error
|
Modifier and Type | Method and Description |
---|---|
static ValidationMessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidationMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationMessageType XSD
public static final ValidationMessageType STANDARDS_DOCUMENT
public static final ValidationMessageType IMPLEMENTATION_GUIDE
public static ValidationMessageType[] values()
for (ValidationMessageType c : ValidationMessageType.values()) System.out.println(c);
public static ValidationMessageType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null