Interface IUntypedQuery<T>


public interface IUntypedQuery<T>
  • Method Details

    • 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 the forAllResources(), 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.