Package ca.cdr.api.fhir.tokenization
Class TokenizationRequest
java.lang.Object
ca.cdr.api.fhir.tokenization.TokenizationRequest
-
Constructor Summary
ConstructorsConstructorDescriptionTokenizationRequest
(TokenizationRuleJson theRule, IBase theSourceElement, IQueryParameterType theObjectQueryParameter, FhirContext theFhirContext) ConstructorTokenizationRequest
(TokenizationRuleJson theRule, IBase theSourceElement, IBase theObject, boolean theNonNormalizedCopy, FhirContext theFhirContext) Constructor -
Method Summary
Modifier and TypeMethodDescriptionReturns the underlying HAPI FHIR object to be tokenized, converted into a stringReturns the underlying HAPI FHIR object to be tokenized.Returns the underlying HAPI FHIR query parameter object to be tokenized.getRule()
This is the rule which resulted in this request.Returns the FHIR element which was the source of the tokenization request.boolean
If the rule specified aTokenizationRuleJson.getSearchValueNormalization()
algorithm, then it will result in two tokenization requests.toString()
-
Constructor Details
-
TokenizationRequest
public TokenizationRequest(@Nonnull TokenizationRuleJson theRule, @Nullable IBase theSourceElement, @Nonnull IBase theObject, boolean theNonNormalizedCopy, @Nonnull FhirContext theFhirContext) Constructor -
TokenizationRequest
public TokenizationRequest(@Nonnull TokenizationRuleJson theRule, @Nullable IBase theSourceElement, @Nonnull IQueryParameterType theObjectQueryParameter, @Nonnull FhirContext theFhirContext) Constructor
-
-
Method Details
-
getSourceElement
Returns the FHIR element which was the source of the tokenization request. This method may return null in some cases, such as when a search parameter is being tokenized. -
isNonNormalizedCopy
If the rule specified aTokenizationRuleJson.getSearchValueNormalization()
algorithm, then it will result in two tokenization requests. One for the normalized value, and one for the original (non-normalized) version. This method will return true if this is such a non-normalized version. -
getRule
This is the rule which resulted in this request. Providers should not modify this object. -
getObjectElement
Returns the underlying HAPI FHIR object to be tokenized. If this method returns a value,getObjectQueryParameter()
will return null and vice versa. -
getObjectQueryParameter
Returns the underlying HAPI FHIR query parameter object to be tokenized. If this method returns a value,getObjectElement()
will return null and vice versa. -
getObjectAsString
Returns the underlying HAPI FHIR object to be tokenized, converted into a string -
toString
-