Interface ExtractedParameterValue
-
- All Known Implementing Classes:
CompositeParmVal,DateParmVal,LocationParmVal,NumberParmVal,QuantityParmVal,ReferenceParmVal,StringParmVal,TokenParmVal,UriParmVal
public interface ExtractedParameterValueA search parameter value extracted from a resource and ready to store / index for search
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(ExtractedParameterValueVisitor visitor)We know our type, so we can call the correct method on the visitorStringgetBase()StringgetName()StringgetResourceType()voidsetBase(String base)voidsetName(String name)voidsetResourceType(String resourceType)
-
-
-
Method Detail
-
setName
void setName(String name)
-
getName
String getName()
-
getResourceType
String getResourceType()
-
setResourceType
void setResourceType(String resourceType)
-
accept
void accept(ExtractedParameterValueVisitor visitor) throws FHIRPersistenceException
We know our type, so we can call the correct method on the visitor- Throws:
FHIRPersistenceException
-
getBase
String getBase()
- Returns:
- the base
-
setBase
void setBase(String base)
- Parameters:
base- the base to set
-
-