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.service
Methods in com.ibm.fhir.term.service with parameters of type CodeSystem Modifier and Type Method Description 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, 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 parametersValidationOutcome
FHIRTermService. validateCode(CodeSystem codeSystem, String version, Code code, String display)
Validate a code and display using the provided code system and versionValidationOutcome
FHIRTermService. validateCode(CodeSystem codeSystem, String version, Code code, String display, ValidationParameters parameters)
Validate a code and display using the provided code system, version 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 ValidationOutcome
DefaultTermServiceProvider. validateCode(CodeSystem codeSystem, CodeableConcept codeableConcept, ValidationParameters parameters)
ValidationOutcome
DefaultTermServiceProvider. validateCode(CodeSystem codeSystem, Coding coding, ValidationParameters parameters)
-
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 default ValidationOutcome
FHIRTermServiceProvider. validateCode(CodeSystem codeSystem, CodeableConcept codeableConcept)
Validate a codeable concept using the provided code systemValidationOutcome
FHIRTermServiceProvider. validateCode(CodeSystem codeSystem, CodeableConcept codeableConcept, ValidationParameters parameters)
Validate a codeable concept using the provided code system and validation parametersdefault ValidationOutcome
FHIRTermServiceProvider. validateCode(CodeSystem codeSystem, Coding coding)
Validate a coding using the provided code systemValidationOutcome
FHIRTermServiceProvider. validateCode(CodeSystem codeSystem, Coding coding, ValidationParameters parameters)
Validate a coding using the provided code system and validation parametersdefault ValidationOutcome
FHIRTermServiceProvider. validateCode(CodeSystem codeSystem, String version, Code code, String display)
Validate a code and display using the provided code system and versiondefault ValidationOutcome
FHIRTermServiceProvider. validateCode(CodeSystem codeSystem, String version, Code code, String display, ValidationParameters parameters)
Validate a code and display using the provided code system, version and validation parameters -
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 CodeSystem.Property
CodeSystemSupport. getCodeSystemProperty(CodeSystem codeSystem, Code code)
Get the code system property that matches the specified code.static Set<CodeSystem.Concept>
CodeSystemSupport. getConcepts(CodeSystem codeSystem)
Get a set containingCodeSystem.Concept
instances where all structural hierarchies have been flattened.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
-