Uses of Class
com.ibm.fhir.model.resource.CodeSystem
-
-
Uses of CodeSystem in com.ibm.fhir.model.resource
Methods in com.ibm.fhir.model.resource that return CodeSystem Modifier and Type Method Description CodeSystem
CodeSystem.Builder. build()
Build theCodeSystem
Methods in com.ibm.fhir.model.resource with parameters of type CodeSystem Modifier and Type Method Description protected CodeSystem.Builder
CodeSystem.Builder. from(CodeSystem codeSystem)
-
Uses of CodeSystem in com.ibm.fhir.model.visitor
Methods in com.ibm.fhir.model.visitor with parameters of type CodeSystem Modifier and Type Method Description boolean
DefaultVisitor. visit(String elementName, int elementIndex, CodeSystem codeSystem)
Delegates to#visit(elementName, elementIndex, DomainResource)
boolean
Visitor. visit(String elementName, int elementIndex, CodeSystem codeSystem)
-
Uses of CodeSystem in com.ibm.fhir.registry.util
Methods in com.ibm.fhir.registry.util with parameters of type CodeSystem Modifier and Type Method Description boolean
DefinitionalResourceVisitor. visit(String elementName, int elementIndex, CodeSystem codeSystem)
-
Uses of CodeSystem in com.ibm.fhir.term.graph.loader.impl
Methods in com.ibm.fhir.term.graph.loader.impl that return CodeSystem Modifier and Type Method Description CodeSystem
CodeSystemTermGraphLoader. getCodeSystem()
Constructors in com.ibm.fhir.term.graph.loader.impl with parameters of type CodeSystem Constructor Description CodeSystemTermGraphLoader(FHIRTermGraph graph, CodeSystem codeSystem)
CodeSystemTermGraphLoader(org.apache.commons.configuration.Configuration configuration, CodeSystem codeSystem)
-
Uses of CodeSystem in com.ibm.fhir.term.graph.provider
Methods in com.ibm.fhir.term.graph.provider with parameters of type CodeSystem Modifier and Type Method Description Set<CodeSystem.Concept>
GraphTermServiceProvider. closure(CodeSystem codeSystem, Code code)
Map<Code,Set<CodeSystem.Concept>>
GraphTermServiceProvider. closure(CodeSystem codeSystem, Set<Code> codes)
CodeSystem.Concept
GraphTermServiceProvider. getConcept(CodeSystem codeSystem, Code code)
Set<CodeSystem.Concept>
GraphTermServiceProvider. getConcepts(CodeSystem codeSystem)
<R> Set<R>
GraphTermServiceProvider. getConcepts(CodeSystem codeSystem, Function<CodeSystem.Concept,? extends R> function)
Set<CodeSystem.Concept>
GraphTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters)
<R> Set<R>
GraphTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters, Function<CodeSystem.Concept,? extends R> function)
boolean
GraphTermServiceProvider. hasConcept(CodeSystem codeSystem, Code code)
boolean
GraphTermServiceProvider. hasConcepts(CodeSystem codeSystem, Set<Code> codes)
boolean
GraphTermServiceProvider. isSupported(CodeSystem codeSystem)
boolean
GraphTermServiceProvider. subsumes(CodeSystem codeSystem, Code codeA, Code codeB)
-
Uses of CodeSystem in com.ibm.fhir.term.graph.registry
Fields in com.ibm.fhir.term.graph.registry declared as CodeSystem Modifier and Type Field Description static CodeSystem
SnomedRegistryResourceProvider. SNOMED_CODE_SYSTEM
-
Uses of CodeSystem in com.ibm.fhir.term.remote.provider
Methods in com.ibm.fhir.term.remote.provider with parameters of type CodeSystem Modifier and Type Method Description Set<CodeSystem.Concept>
RemoteTermServiceProvider. closure(CodeSystem codeSystem, Code code)
Map<Code,Set<CodeSystem.Concept>>
RemoteTermServiceProvider. closure(CodeSystem codeSystem, Set<Code> codes)
CodeSystem.Concept
RemoteTermServiceProvider. getConcept(CodeSystem codeSystem, Code code)
Set<CodeSystem.Concept>
RemoteTermServiceProvider. getConcepts(CodeSystem codeSystem)
<R> Set<R>
RemoteTermServiceProvider. getConcepts(CodeSystem codeSystem, Function<CodeSystem.Concept,? extends R> function)
Set<CodeSystem.Concept>
RemoteTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters)
<R> Set<R>
RemoteTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters, Function<CodeSystem.Concept,? extends R> function)
boolean
RemoteTermServiceProvider. hasConcept(CodeSystem codeSystem, Code code)
boolean
RemoteTermServiceProvider. hasConcepts(CodeSystem codeSystem, Set<Code> codes)
boolean
RemoteTermServiceProvider. isSupported(CodeSystem codeSystem)
boolean
RemoteTermServiceProvider. subsumes(CodeSystem codeSystem, Code codeA, Code codeB)
-
Uses of CodeSystem in com.ibm.fhir.term.service
Methods in com.ibm.fhir.term.service with parameters of type CodeSystem Modifier and Type Method Description Set<CodeSystem.Concept>
FHIRTermService. closure(CodeSystem codeSystem, Code code)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened.Map<Code,Set<CodeSystem.Concept>>
FHIRTermService. closure(CodeSystem codeSystem, Set<Code> codes)
Get a map of sets containingCodeSystem.Concept
instances where all structural hierarchies have been flattenedCodeSystem.Concept
FHIRTermService. getConcept(CodeSystem codeSystem, Code code)
Get the concept in the provided code system with the specified code.Set<CodeSystem.Concept>
FHIRTermService. getConcepts(CodeSystem codeSystem)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened.<R> Set<R>
FHIRTermService. getConcepts(CodeSystem codeSystem, Function<CodeSystem.Concept,? extends R> function)
Get a set containingFHIRTermService
instances mapped from concepts where all structural hierarchies have been flattened.Set<CodeSystem.Concept>
FHIRTermService. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened and filtered by the given set of value set include filters.<R> Set<R>
FHIRTermService. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters, Function<CodeSystem.Concept,? extends R> function)
Get a set containingFHIRTermService
instances mapped from concepts where all structural hierarchies have been flattened and filtered by the given set of value set include filters.boolean
FHIRTermService. hasConcept(CodeSystem codeSystem, Code code)
Indicates whether the given code system contains a concept with the specified code.boolean
FHIRTermService. hasConcepts(CodeSystem codeSystem, Set<Code> codes)
Indicates whether the given code system contains a concept for each of the specified codes.boolean
FHIRTermService. isSupported(CodeSystem codeSystem)
Indicates whether the given code system is supported.boolean
FHIRTermService. subsumes(CodeSystem codeSystem, Code codeA, Code codeB)
Find the concept in tree rooted by the provided concept that matches the specified code.ValidationOutcome
FHIRTermService. validateCode(CodeSystem codeSystem, CodeableConcept codeableConcept)
Validate a codeable concept using the provided code systemValidationOutcome
FHIRTermService. validateCode(CodeSystem codeSystem, CodeableConcept codeableConcept, ValidationParameters parameters)
Validate a codeable concept using the provided code system and validation parametersValidationOutcome
FHIRTermService. validateCode(CodeSystem codeSystem, Code code, String display)
Validate a code and display using the provided code systemValidationOutcome
FHIRTermService. validateCode(CodeSystem codeSystem, Code code, String display, ValidationParameters parameters)
Validate a code and display using the provided code system and validation parametersValidationOutcome
FHIRTermService. validateCode(CodeSystem codeSystem, Coding coding)
Validate a coding using the provided code systemValidationOutcome
FHIRTermService. validateCode(CodeSystem codeSystem, Coding coding, ValidationParameters parameters)
Validate a coding using the provided code system and validation parameters -
Uses of CodeSystem in com.ibm.fhir.term.service.provider
Methods in com.ibm.fhir.term.service.provider with parameters of type CodeSystem Modifier and Type Method Description Set<CodeSystem.Concept>
RegistryTermServiceProvider. closure(CodeSystem codeSystem, Code code)
CodeSystem.Concept
RegistryTermServiceProvider. getConcept(CodeSystem codeSystem, Code code)
Set<CodeSystem.Concept>
RegistryTermServiceProvider. getConcepts(CodeSystem codeSystem)
<R> Set<R>
RegistryTermServiceProvider. getConcepts(CodeSystem codeSystem, Function<CodeSystem.Concept,? extends R> function)
Set<CodeSystem.Concept>
RegistryTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters)
<R> Set<R>
RegistryTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters, Function<CodeSystem.Concept,? extends R> function)
boolean
RegistryTermServiceProvider. hasConcept(CodeSystem codeSystem, Code code)
boolean
RegistryTermServiceProvider. isSupported(CodeSystem codeSystem)
boolean
RegistryTermServiceProvider. subsumes(CodeSystem codeSystem, Code codeA, Code codeB)
-
Uses of CodeSystem in com.ibm.fhir.term.spi
Methods in com.ibm.fhir.term.spi with parameters of type CodeSystem Modifier and Type Method Description protected void
AbstractTermServiceProvider. checkArgument(CodeSystem codeSystem)
protected void
AbstractTermServiceProvider. checkArguments(CodeSystem codeSystem, Code code)
protected void
AbstractTermServiceProvider. checkArguments(CodeSystem codeSystem, Code codeA, Code codeB)
protected <R> void
AbstractTermServiceProvider. checkArguments(CodeSystem codeSystem, Function<CodeSystem.Concept,? extends R> function)
protected void
AbstractTermServiceProvider. checkArguments(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters)
protected <R> void
AbstractTermServiceProvider. checkArguments(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters, Function<CodeSystem.Concept,? extends R> function)
abstract Set<CodeSystem.Concept>
AbstractTermServiceProvider. closure(CodeSystem codeSystem, Code code)
Set<CodeSystem.Concept>
FHIRTermServiceProvider. closure(CodeSystem codeSystem, Code code)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened.default Map<Code,Set<CodeSystem.Concept>>
FHIRTermServiceProvider. closure(CodeSystem codeSystem, Set<Code> codes)
Get a map of sets containingCodeSystem.Concept
instances where all structural hierarchies have been flattenedabstract CodeSystem.Concept
AbstractTermServiceProvider. getConcept(CodeSystem codeSystem, Code code)
CodeSystem.Concept
FHIRTermServiceProvider. getConcept(CodeSystem codeSystem, Code code)
Get the concept in the provided code system with the specified code.abstract Set<CodeSystem.Concept>
AbstractTermServiceProvider. getConcepts(CodeSystem codeSystem)
abstract Set<CodeSystem.Concept>
AbstractTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters)
Set<CodeSystem.Concept>
FHIRTermServiceProvider. getConcepts(CodeSystem codeSystem)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened.default <R> Set<R>
FHIRTermServiceProvider. getConcepts(CodeSystem codeSystem, Function<CodeSystem.Concept,? extends R> function)
Get a set containingFHIRTermServiceProvider
instances mapped from concepts where all structural hierarchies have been flattened.Set<CodeSystem.Concept>
FHIRTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened and filtered by the given set of value set include filters.default <R> Set<R>
FHIRTermServiceProvider. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters, Function<CodeSystem.Concept,? extends R> function)
Get a set containingFHIRTermServiceProvider
instances mapped from concepts where all structural hierarchies have been flattened and filtered by the given set of value set include filters.abstract boolean
AbstractTermServiceProvider. hasConcept(CodeSystem codeSystem, Code code)
boolean
FHIRTermServiceProvider. hasConcept(CodeSystem codeSystem, Code code)
Indicates whether the given code system contains a concept with the specified code.default boolean
FHIRTermServiceProvider. hasConcepts(CodeSystem codeSystem, Set<Code> codes)
Indicates whether the given code system contains a concept for each of the specified codes.abstract boolean
AbstractTermServiceProvider. isSupported(CodeSystem codeSystem)
boolean
FHIRTermServiceProvider. isSupported(CodeSystem codeSystem)
Indicates whether the given code system is supported.abstract boolean
AbstractTermServiceProvider. subsumes(CodeSystem codeSystem, Code codeA, Code codeB)
boolean
FHIRTermServiceProvider. subsumes(CodeSystem codeSystem, Code codeA, Code codeB)
Indicates whether the concept forCodeA
subsumes the concept forcodeB
in the passed CodeSystem. -
Uses of CodeSystem in com.ibm.fhir.term.util
Methods in com.ibm.fhir.term.util that return CodeSystem Modifier and Type Method Description static CodeSystem
CodeSystemSupport. getCodeSystem(String url)
Get the code system associated with the given url from the FHIR registry.Methods in com.ibm.fhir.term.util with parameters of type CodeSystem Modifier and Type Method Description static CodeSystem.Concept
CodeSystemSupport. findConcept(CodeSystem codeSystem, CodeSystem.Concept concept, Code code)
Find the concept in tree rooted by the provided concept that matches the specified code.static CodeSystem.Concept
CodeSystemSupport. findConcept(CodeSystem codeSystem, Code code)
Find the concept in the provided code system that matches the specified code.static Set<String>
CodeSystemSupport. getAncestorsAndSelf(CodeSystem codeSystem, Code code)
Get all of the concepts, from the provided code system, that subsume the concept with the specified code.static CodeSystem.Filter
CodeSystemSupport. getCodeSystemFilter(CodeSystem codeSystem, Code code, FilterOperator operator)
Get the code system filter with the given property code and filter operator.static CodeSystem.Property
CodeSystemSupport. getCodeSystemProperty(CodeSystem codeSystem, Code code)
Get the code system property that matches the specified code.static PropertyType
CodeSystemSupport. getCodeSystemPropertyType(CodeSystem codeSystem, Code code)
Get the type of the code system property that matches the specified code.static Function<CodeSystem.Concept,String>
CodeSystemSupport. getCodeValueFunction(CodeSystem codeSystem)
Get the appropriate code value function for the given code system based on its case sensitivity.static Set<CodeSystem.Concept>
CodeSystemSupport. getConcepts(CodeSystem codeSystem)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened.static <R> Set<R>
CodeSystemSupport. getConcepts(CodeSystem codeSystem, Function<CodeSystem.Concept,? extends R> function)
Get a set containingCodeSystemSupport
instances mapped from concepts where all structural hierarchies have been flattened.static Set<CodeSystem.Concept>
CodeSystemSupport. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened and filtered by the given set of value set include filters.static <R> Set<R>
CodeSystemSupport. getConcepts(CodeSystem codeSystem, List<ValueSet.Compose.Include.Filter> filters, Function<CodeSystem.Concept,? extends R> function)
Get a set containingCodeSystemSupport
instances mapped from concepts where all structural hierarchies have been flattened and filtered by the given set of value set include filters.static Set<String>
CodeSystemSupport. getDescendantsAndSelf(CodeSystem codeSystem, Code code)
Get all of the concepts, from the provided code system, that are subsumed by the concept with the specified code.static boolean
CodeSystemSupport. hasCodeSystemFilter(CodeSystem codeSystem, Code code, FilterOperator operator)
Determine whether a code system filter with the specified property code and filter operator exists in the provided code system.static boolean
CodeSystemSupport. hasCodeSystemProperty(CodeSystem codeSystem, Code code)
Determine whether a code system property with the specified code exists in the provided code system.static boolean
CodeSystemSupport. isCaseSensitive(CodeSystem codeSystem)
Indicates whether the code system is case sensitive
-