Enum 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 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_QUANTITIES

        public static final ParamMetrics M_QUANTITIES
      • M_REFERENCES

        public static final ParamMetrics M_REFERENCES
    • 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 name
        java.lang.NullPointerException - if the argument is null