Enum SqlTuningSet.AllSqlStatementsFetched

  • All Implemented Interfaces:
    BmcEnum, Serializable, Comparable<SqlTuningSet.AllSqlStatementsFetched>
    Enclosing class:
    SqlTuningSet

    public static enum SqlTuningSet.AllSqlStatementsFetched
    extends Enum<SqlTuningSet.AllSqlStatementsFetched>
    implements BmcEnum
    In OCI database management, there is a limit to fetch only 2000 rows.

    This flag indicates whether all Sql statements of this Sql tuning set matching the filter criteria are fetched or not. Possible values are ‘Yes’ or ‘No’ - Yes - All Sql statements matching the filter criteria are fetched. - No - There are more Sql statements matching the fitler criteria. User should fine tune the filter criteria to narrow down the result set.

    • Method Detail

      • values

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

        public static SqlTuningSet.AllSqlStatementsFetched 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