Enum ParserType

java.lang.Object
java.lang.Enum<ParserType>
org.hl7.fhir.r5.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 Details

    • 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 Details

    • values

      public static ParserType[] 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

      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 name
      NullPointerException - if the argument is null