001package org.hl7.fhir.r4.formats; 002 003/** 004 * Used in factory methods for parsers, for requesting a parser of a particular type 005 * (see IWorkerContext) 006 * 007 * @author Grahame 008 * 009 */ 010public enum ParserType { 011 /** 012 * XML as specified in specification 013 */ 014 XML, 015 016 /** 017 * JSON as specified in the specification 018 */ 019 JSON, 020 021 /** 022 * XHTML - write narrative (generate if necessary). No read 023 */ 024 XHTML, 025 026 /** 027 * RDF is not supported yet 028 */ 029 RDF_TURTLE 030}