Package org.hl7.fhir.r4.formats
Enum ParserType
- java.lang.Object
-
- java.lang.Enum<ParserType>
-
- org.hl7.fhir.r4.formats.ParserType
-
- All Implemented Interfaces:
Serializable,Comparable<ParserType>
public enum ParserType extends Enum<ParserType>
Used in factory methods for parsers, for requesting a parser of a particular type (see IWorkerContext)- Author:
- Grahame
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JSONJSON as specified in the specificationRDF_TURTLERDF is not supported yetXHTMLXHTML - write narrative (generate if necessary).XMLXML as specified in specification
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParserTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ParserType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XML
public static final ParserType XML
XML as specified in specification
-
JSON
public static final ParserType JSON
JSON as specified in the specification
-
XHTML
public static final ParserType XHTML
XHTML - write narrative (generate if necessary). No read
-
RDF_TURTLE
public static final ParserType RDF_TURTLE
RDF is not supported yet
-
-
Method Detail
-
values
public static ParserType[] 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 (ParserType c : ParserType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParserType 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
-
-