Enum TDAPI_EXECUTE_QUERY_LIMIT_STATUS

    • Enum Constant Detail

      • TDOLE_EXECUTE_QUERY_LIMIT_OK_NOTRUNCATION_STATUS

        public static final TDAPI_EXECUTE_QUERY_LIMIT_STATUS TDOLE_EXECUTE_QUERY_LIMIT_OK_NOTRUNCATION_STATUS

        All records that match the query were returned.

        The value of this constant is 0

      • TDOLE_EXECUTE_QUERY_LIMIT_OK_TRUNCATED_BY_REQUEST_STATUS

        public static final TDAPI_EXECUTE_QUERY_LIMIT_STATUS TDOLE_EXECUTE_QUERY_LIMIT_OK_TRUNCATED_BY_REQUEST_STATUS

        The result set was truncated at the limit specified in the ExecuteQuery command

        The value of this constant is 1

      • TDOLE_EXECUTE_QUERY_LIMIT_OK_TRUNCATED_BY_SITEADMIN_STATUS

        public static final TDAPI_EXECUTE_QUERY_LIMIT_STATUS TDOLE_EXECUTE_QUERY_LIMIT_OK_TRUNCATED_BY_SITEADMIN_STATUS

        The result set was truncated at the limit specified by the site configuration param REPORT_QUERY_RECORDS_LIMIT.

        The value of this constant is 2

    • Method Detail

      • values

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

        public static TDAPI_EXECUTE_QUERY_LIMIT_STATUS 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