Interface ExtractedParameterValue
-
- All Known Implementing Classes:
CompositeParmVal
,DateParmVal
,LocationParmVal
,NumberParmVal
,QuantityParmVal
,ReferenceParmVal
,StringParmVal
,TokenParmVal
,UriParmVal
public interface ExtractedParameterValue
A 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 void
accept(ExtractedParameterValueVisitor visitor)
We know our type, so we can call the correct method on the visitorString
getBase()
String
getName()
String
getResourceType()
void
setBase(String base)
void
setName(String name)
void
setResourceType(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
-
-