Package ca.uhn.fhir.rest.gclient
Interface IUntypedQuery<T>
-
public interface IUntypedQuery<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IQuery<T>byUrl(String theSearchUrl)Perform a search directly by URL.IQuery<T>forAllResources()IQuery<T>forResource(Class<? extends IBaseResource> theClass)IQuery<T>forResource(String theResourceName)
-
-
-
Method Detail
-
forAllResources
IQuery<T> forAllResources()
-
forResource
IQuery<T> forResource(String theResourceName)
-
forResource
IQuery<T> forResource(Class<? extends IBaseResource> theClass)
-
byUrl
IQuery<T> byUrl(String theSearchUrl)
Perform a search directly by URL. It is usually better to construct the URL using theforAllResources(),forResource(Class)etc, but sometimes it is useful to simply search by entering a search URL directly.- Parameters:
theSearchUrl- The URL to search for. Note that this URL may be complete (e.g. "http://example.com/base/Patient?name=foo") in which case the client's base URL will be ignored. Or it can be relative (e.g. "Patient?name=foo") in which case the client's base URL will be used.
-
-