Package ca.uhn.fhir.jpa.api.config
Enum 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>
- Enclosing class:
JpaStorageSettings
public static enum JpaStorageSettings.TagStorageModeEnum
extends Enum<JpaStorageSettings.TagStorageModeEnum>
-
Enum Constant Summary
Enum 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 type with the specified name.values()
Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-