Enum AutomaticCaptureFilter.Name

  • All Implemented Interfaces:
    BmcEnum, Serializable, Comparable<AutomaticCaptureFilter.Name>
    Enclosing class:
    AutomaticCaptureFilter

    public static enum AutomaticCaptureFilter.Name
    extends Enum<AutomaticCaptureFilter.Name>
    implements BmcEnum
    The name of the automatic capture filter.

    - AUTO_CAPTURE_SQL_TEXT: Search pattern to apply to SQL text. - AUTO_CAPTURE_PARSING_SCHEMA_NAME: Parsing schema to include or exclude for SQL plan management auto capture. - AUTO_CAPTURE_MODULE: Module to include or exclude for SQL plan management auto capture. - AUTO_CAPTURE_ACTION: Action to include or exclude for SQL plan management automatic capture.

    • Method Detail

      • values

        public static AutomaticCaptureFilter.Name[] 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 (AutomaticCaptureFilter.Name c : AutomaticCaptureFilter.Name.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AutomaticCaptureFilter.Name valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null