Tabnine Logo
IHistory.onType
Code IndexAdd Tabnine to your IDE (free)

How to use
onType
method
in
ca.uhn.fhir.rest.gclient.IHistory

Best Java code snippets using ca.uhn.fhir.rest.gclient.IHistory.onType (Showing top 1 results out of 315)

origin: org.apache.camel/camel-fhir-api

/**
 * Perform the operation across all versions of all resources of the given type on the server
 *
 * @param resourceType The resource type to search for
 * @param returnType Request that the method return a Bundle resource (such as <code>ca.uhn.fhir.model.dstu2.resource.Bundle</code>).
 *                Use this method if you are accessing a DSTU2+ server.
 * @param count Request that the server return only up to <code>theCount</code> number of resources, may be NULL
 * @param cutoff Request that the server return only resource versions that were created at or after the given time (inclusive), may be NULL
 * @param iCutoff Request that the server return only resource versions that were created at or after the given time (inclusive), may be NULL
 * @param <T> extends {@link IBaseBundle}
 * @param extraParameters see {@link ExtraParameters} for a full list of parameters that can be passed, may be NULL
 * @return the {@link IBaseBundle}
 */
public <T extends IBaseBundle> T onType(Class<IBaseResource> resourceType, Class<T> returnType, Integer count, Date cutoff,
                    IPrimitiveType<Date> iCutoff, Map<ExtraParameters, Object> extraParameters) {
  IHistoryTyped<T> tiHistoryTyped = client.history().onType(resourceType).andReturnBundle(returnType);
  processOptionalParams(count, cutoff, iCutoff, tiHistoryTyped);
  ExtraParameters.process(extraParameters, tiHistoryTyped);
  return tiHistoryTyped.execute();
}
ca.uhn.fhir.rest.gclientIHistoryonType

Popular methods of IHistory

  • onInstance
  • onServer

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • setScale (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now