Enum ValidationMessage.Source
- java.lang.Object
-
- java.lang.Enum<ValidationMessage.Source>
-
- org.hl7.fhir.utilities.validation.ValidationMessage.Source
-
- All Implemented Interfaces:
Serializable
,Comparable<ValidationMessage.Source>
- Enclosing class:
- ValidationMessage
public static enum ValidationMessage.Source extends Enum<ValidationMessage.Source>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ExampleValidator
InstanceValidator
IPAValidator
LinkChecker
Ontology
ProfileComparer
ProfileValidator
Publisher
QuestionnaireResponseValidator
ResourceValidator
Schema
Schematron
Template
TerminologyEngine
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidationMessage.Source
valueOf(String name)
Returns the enum constant of this type with the specified name.static ValidationMessage.Source[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ExampleValidator
public static final ValidationMessage.Source ExampleValidator
-
ProfileValidator
public static final ValidationMessage.Source ProfileValidator
-
ResourceValidator
public static final ValidationMessage.Source ResourceValidator
-
InstanceValidator
public static final ValidationMessage.Source InstanceValidator
-
Template
public static final ValidationMessage.Source Template
-
Schema
public static final ValidationMessage.Source Schema
-
Schematron
public static final ValidationMessage.Source Schematron
-
Publisher
public static final ValidationMessage.Source Publisher
-
LinkChecker
public static final ValidationMessage.Source LinkChecker
-
Ontology
public static final ValidationMessage.Source Ontology
-
ProfileComparer
public static final ValidationMessage.Source ProfileComparer
-
TerminologyEngine
public static final ValidationMessage.Source TerminologyEngine
-
QuestionnaireResponseValidator
public static final ValidationMessage.Source QuestionnaireResponseValidator
-
IPAValidator
public static final ValidationMessage.Source IPAValidator
-
-
Method Detail
-
values
public static ValidationMessage.Source[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ValidationMessage.Source c : ValidationMessage.Source.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidationMessage.Source 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 nameNullPointerException
- if the argument is null
-
-