Class FHIRXMLParser
- java.lang.Object
-
- org.linuxforhealth.fhir.model.parser.FHIRAbstractParser
-
- org.linuxforhealth.fhir.model.parser.FHIRXMLParser
-
- All Implemented Interfaces:
FHIRParser
@NotThreadSafe @Generated("org.linuxforhealth.fhir.tools.CodeGenerator") public class FHIRXMLParser extends FHIRAbstractParser
-
-
Field Summary
Fields Modifier and Type Field Description static boolean
DEBUG
-
Fields inherited from class org.linuxforhealth.fhir.model.parser.FHIRAbstractParser
ignoringUnrecognizedElements, properties, validating
-
-
Constructor Summary
Constructors Constructor Description FHIRXMLParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends Resource>
Tparse(java.io.InputStream in)
Read a resource from the passed InputStream.<T extends Resource>
Tparse(java.io.Reader reader)
Read a resource using the passed Reader.-
Methods inherited from class org.linuxforhealth.fhir.model.parser.FHIRAbstractParser
as, getProperty, getProperty, getPropertyOrDefault, getPropertyOrDefault, isIgnoringUnrecognizedElements, isPropertySupported, isValidating, setIgnoringUnrecognizedElements, setProperty, setValidating
-
-
-
-
Method Detail
-
parse
public <T extends Resource> T parse(java.io.InputStream in) throws FHIRParserException
Description copied from interface:FHIRParser
Read a resource from the passed InputStream. This method does not close the passed InputStream.- Specified by:
parse
in interfaceFHIRParser
- Specified by:
parse
in classFHIRAbstractParser
- Type Parameters:
T
- The resource type to read- Returns:
- Throws:
FHIRParserException
- if the resource could not be parsed for any reason
-
parse
public <T extends Resource> T parse(java.io.Reader reader) throws FHIRParserException
Description copied from interface:FHIRParser
Read a resource using the passed Reader. This method does not close the passed Reader.- Specified by:
parse
in interfaceFHIRParser
- Specified by:
parse
in classFHIRAbstractParser
- Type Parameters:
T
- The resource type to read- Returns:
- Throws:
FHIRParserException
- if the resource could not be parsed for any reason
-
-