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