Enum ParamMetrics
- java.lang.Object
-
- java.lang.Enum<ParamMetrics>
-
- org.linuxforhealth.fhir.persistence.params.api.ParamMetrics
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ParamMetrics>
public enum ParamMetrics extends java.lang.Enum<ParamMetrics>
The metric names for tracking search parameter insert performance
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParamMetrics
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ParamMetrics[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
M_PARAM_RESOLVE_LOGICAL_RESOURCES
public static final ParamMetrics M_PARAM_RESOLVE_LOGICAL_RESOURCES
-
M_PARAM_RESOLVE_COMMON_TOKEN_VALUES
public static final ParamMetrics M_PARAM_RESOLVE_COMMON_TOKEN_VALUES
-
M_PARAM_RESOLVE_CODE_SYSTEMS
public static final ParamMetrics M_PARAM_RESOLVE_CODE_SYSTEMS
-
M_PARAM_RESOLVE_PARAMETER_NAMES
public static final ParamMetrics M_PARAM_RESOLVE_PARAMETER_NAMES
-
M_PARAM_RESOLVE_CANONICAL_VALUES
public static final ParamMetrics M_PARAM_RESOLVE_CANONICAL_VALUES
-
M_PARAM_PUBLISH
public static final ParamMetrics M_PARAM_PUBLISH
-
M_PARAM_PUSH_BATCH
public static final ParamMetrics M_PARAM_PUSH_BATCH
-
M_STRINGS
public static final ParamMetrics M_STRINGS
-
M_NUMBERS
public static final ParamMetrics M_NUMBERS
-
M_TOKENS
public static final ParamMetrics M_TOKENS
-
M_QUANTITIES
public static final ParamMetrics M_QUANTITIES
-
M_LOCATIONS
public static final ParamMetrics M_LOCATIONS
-
M_REFERENCES
public static final ParamMetrics M_REFERENCES
-
M_DATES
public static final ParamMetrics M_DATES
-
M_TAGS
public static final ParamMetrics M_TAGS
-
M_PROFILES
public static final ParamMetrics M_PROFILES
-
M_SECURITY
public static final ParamMetrics M_SECURITY
-
-
Method Detail
-
values
public static ParamMetrics[] 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 (ParamMetrics c : ParamMetrics.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParamMetrics 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
-
-