Interface ExtractedParameterValueVisitor
-
- All Known Implementing Classes:
ParameterHashVisitor
,ParameterTransportVisitor
public interface ExtractedParameterValueVisitor
A visitor passed to the parameter visit method
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(CompositeParmVal compositeParameter)
Process a composite parameter valuevoid
visit(DateParmVal dateParameter)
Process a date parameter valuevoid
visit(LocationParmVal locationParameter)
Process a location parameter valuevoid
visit(NumberParmVal numberParameter)
Process a number parameter valuevoid
visit(QuantityParmVal quantityParameter)
Process a quantity parameter valuevoid
visit(ReferenceParmVal referenceParmVal)
Process a reference parameter valuevoid
visit(StringParmVal stringParameter)
Process a string parameter valuevoid
visit(TokenParmVal tokenParameter)
Process a token parameter value
-
-
-
Method Detail
-
visit
void visit(StringParmVal stringParameter) throws FHIRPersistenceException
Process a string parameter value- Throws:
FHIRPersistenceException
-
visit
void visit(NumberParmVal numberParameter) throws FHIRPersistenceException
Process a number parameter value- Throws:
FHIRPersistenceException
-
visit
void visit(DateParmVal dateParameter) throws FHIRPersistenceException
Process a date parameter value- Throws:
FHIRPersistenceException
-
visit
void visit(TokenParmVal tokenParameter) throws FHIRPersistenceException
Process a token parameter value- Throws:
FHIRPersistenceException
-
visit
void visit(QuantityParmVal quantityParameter) throws FHIRPersistenceException
Process a quantity parameter value- Throws:
FHIRPersistenceException
-
visit
void visit(LocationParmVal locationParameter) throws FHIRPersistenceException
Process a location parameter value- Throws:
FHIRPersistenceException
-
visit
void visit(CompositeParmVal compositeParameter) throws FHIRPersistenceException
Process a composite parameter value- Throws:
FHIRPersistenceException
-
visit
void visit(ReferenceParmVal referenceParmVal) throws FHIRPersistenceException
Process a reference parameter value- Parameters:
referenceParmVal
-- Throws:
FHIRPersistenceException
-
-