public enum TDAPI_EXECUTE_QUERY_LIMIT_STATUS extends Enum<TDAPI_EXECUTE_QUERY_LIMIT_STATUS>
The status returned by ICommand2.ExecuteQuery if synchronous, or ICommand2.IsActionFinished when asynchronous.
Enum Constant and Description |
---|
TDOLE_EXECUTE_QUERY_LIMIT_OK_NOTRUNCATION_STATUS
All records that match the query were returned.
|
TDOLE_EXECUTE_QUERY_LIMIT_OK_TRUNCATED_BY_REQUEST_STATUS
The result set was truncated at the limit specified in the ExecuteQuery command
|
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.
|
Modifier and Type | Method and Description |
---|---|
static TDAPI_EXECUTE_QUERY_LIMIT_STATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TDAPI_EXECUTE_QUERY_LIMIT_STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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
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
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
public static TDAPI_EXECUTE_QUERY_LIMIT_STATUS[] values()
for (TDAPI_EXECUTE_QUERY_LIMIT_STATUS c : TDAPI_EXECUTE_QUERY_LIMIT_STATUS.values()) System.out.println(c);
public static TDAPI_EXECUTE_QUERY_LIMIT_STATUS valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.