Enum FhirSchemaVersion
- java.lang.Object
-
- java.lang.Enum<FhirSchemaVersion>
-
- org.linuxforhealth.fhir.schema.control.FhirSchemaVersion
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FhirSchemaVersion>
public enum FhirSchemaVersion extends java.lang.Enum<FhirSchemaVersion>
Tracks the incremental changes to the FHIR schema as it evolves. Incremental changes to the schema should be recorded here to create a new version number and this enum can then be used to identify the schema objects associated with a particular version.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Getter for the text description of the schema changestatic FhirSchemaVersion
getLatestFhirSchemaVersion()
Get the max FhirSchemaVersion based on vidstatic FhirSchemaVersion
getLatestParameterStorageUpdate()
Gets the latest version that included a parameter storage update, which would require all resources to reindex all search parameters, even if the search parameters and extracted values did not change.boolean
isParameterStorageUpdated()
Determines if the version change affects parameter storagestatic FhirSchemaVersion
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FhirSchemaVersion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.int
vid()
Getter for the version number used by VERSION_HISTORY.
-
-
-
Enum Constant Detail
-
V0001
public static final FhirSchemaVersion V0001
-
V0002
public static final FhirSchemaVersion V0002
-
V0003
public static final FhirSchemaVersion V0003
-
V0004
public static final FhirSchemaVersion V0004
-
V0005
public static final FhirSchemaVersion V0005
-
V0006
public static final FhirSchemaVersion V0006
-
V0007
public static final FhirSchemaVersion V0007
-
V0008
public static final FhirSchemaVersion V0008
-
V0009
public static final FhirSchemaVersion V0009
-
V0010
public static final FhirSchemaVersion V0010
-
V0011
public static final FhirSchemaVersion V0011
-
V0012
public static final FhirSchemaVersion V0012
-
V0013
public static final FhirSchemaVersion V0013
-
V0014
public static final FhirSchemaVersion V0014
-
V0015
public static final FhirSchemaVersion V0015
-
V0016
public static final FhirSchemaVersion V0016
-
V0017
public static final FhirSchemaVersion V0017
-
V0018
public static final FhirSchemaVersion V0018
-
V0019
public static final FhirSchemaVersion V0019
-
V0020
public static final FhirSchemaVersion V0020
-
V0021
public static final FhirSchemaVersion V0021
-
V0022
public static final FhirSchemaVersion V0022
-
V0023
public static final FhirSchemaVersion V0023
-
V0024
public static final FhirSchemaVersion V0024
-
V0025
public static final FhirSchemaVersion V0025
-
V0026
public static final FhirSchemaVersion V0026
-
V0027
public static final FhirSchemaVersion V0027
-
V0028
public static final FhirSchemaVersion V0028
-
V0029
public static final FhirSchemaVersion V0029
-
V0030
public static final FhirSchemaVersion V0030
-
-
Method Detail
-
values
public static FhirSchemaVersion[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FhirSchemaVersion c : FhirSchemaVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FhirSchemaVersion valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
vid
public int vid()
Getter for the version number used by VERSION_HISTORY. We use vid here as a short name to improve readability where this value is used- Returns:
-
getDescription
public java.lang.String getDescription()
Getter for the text description of the schema change- Returns:
-
isParameterStorageUpdated
public boolean isParameterStorageUpdated()
Determines if the version change affects parameter storage- Returns:
-
getLatestParameterStorageUpdate
public static FhirSchemaVersion getLatestParameterStorageUpdate()
Gets the latest version that included a parameter storage update, which would require all resources to reindex all search parameters, even if the search parameters and extracted values did not change.- Returns:
- latest version that included a parameter storage update
-
getLatestFhirSchemaVersion
public static FhirSchemaVersion getLatestFhirSchemaVersion()
Get the max FhirSchemaVersion based on vid- Returns:
-
-