Interface ExtractedParameterValueVisitor
-
- All Known Implementing Classes:
ParameterHashVisitor,ParameterTransportVisitor
public interface ExtractedParameterValueVisitorA visitor passed to the parameter visit method
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvisit(CompositeParmVal compositeParameter)Process a composite parameter valuevoidvisit(DateParmVal dateParameter)Process a date parameter valuevoidvisit(LocationParmVal locationParameter)Process a location parameter valuevoidvisit(NumberParmVal numberParameter)Process a number parameter valuevoidvisit(QuantityParmVal quantityParameter)Process a quantity parameter valuevoidvisit(ReferenceParmVal referenceParmVal)Process a reference parameter valuevoidvisit(StringParmVal stringParameter)Process a string parameter valuevoidvisit(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
-
-