Interface FHIRTermGraphLoader
-
- All Known Implementing Classes:
AbstractTermGraphLoader
,CodeSystemTermGraphLoader
,SnomedICD10MapTermGraphLoader
,SnomedTermGraphLoader
,UMLSTermGraphLoader
public interface FHIRTermGraphLoader
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
FHIRTermGraphLoader.Type
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Close the loader and its underlying resources.FHIRTermGraph
getGraph()
Get the underlyingFHIRTermGraph
instance.void
load()
Load theFHIRTermGraph
.java.util.Map<java.lang.String,java.lang.String>
options()
Get the options used to create thisFHIRTermGraphLoader
.
-
-
-
Method Detail
-
load
void load()
Load theFHIRTermGraph
.
-
close
void close()
Close the loader and its underlying resources.
-
options
java.util.Map<java.lang.String,java.lang.String> options()
Get the options used to create thisFHIRTermGraphLoader
.- Returns:
- the options
-
getGraph
FHIRTermGraph getGraph()
Get the underlyingFHIRTermGraph
instance.- Returns:
- the
FHIRTermGraph
instance
-
-