Enum HistoryCountModeEnum

java.lang.Object
java.lang.Enum<HistoryCountModeEnum>
ca.uhn.fhir.jpa.api.model.HistoryCountModeEnum
All Implemented Interfaces:
Serializable, Comparable<HistoryCountModeEnum>

  • Enum Constant Details

    • COUNT_ACCURATE

      public static final HistoryCountModeEnum COUNT_ACCURATE
      Always include an accurate count in the response
    • CACHED_ONLY_WITHOUT_OFFSET

      For history invocations with no offset (i.e. no since-date specified), always include a count in the response, but cache the count so that the count may be slightly out of date (but resource usage will be much lower). For history invocations with an offset, never return a count.
    • COUNT_DISABLED

      public static final HistoryCountModeEnum COUNT_DISABLED
      Do not include a count in history responses
  • Method Details

    • values

      public static HistoryCountModeEnum[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static HistoryCountModeEnum valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null