
Package ca.uhn.fhir.jpa.api.config
Enum Class JpaStorageSettings.TagStorageModeEnum
java.lang.Object
java.lang.Enum<JpaStorageSettings.TagStorageModeEnum>
ca.uhn.fhir.jpa.api.config.JpaStorageSettings.TagStorageModeEnum
- All Implemented Interfaces:
Serializable
,Comparable<JpaStorageSettings.TagStorageModeEnum>
,Constable
- Enclosing class:
JpaStorageSettings
public static enum JpaStorageSettings.TagStorageModeEnum
extends Enum<JpaStorageSettings.TagStorageModeEnum>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTags are stored directly in the resource body (in the ResourceHistoryTable entry for the resource, meaning that they are not indexed separately, and are versioned with the rest of the resource.A single set of tags is shared by all resource versionsA separate set of tags is stored for each resource version -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VERSIONED
A separate set of tags is stored for each resource version -
NON_VERSIONED
A single set of tags is shared by all resource versions -
INLINE
Tags are stored directly in the resource body (in the ResourceHistoryTable entry for the resource, meaning that they are not indexed separately, and are versioned with the rest of the resource.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-