Enum TDAPI_EXECUTE_QUERY_LIMIT_STATUS
- java.lang.Object
-
- java.lang.Enum<TDAPI_EXECUTE_QUERY_LIMIT_STATUS>
-
- step.repository.alm.v16.otaclient.TDAPI_EXECUTE_QUERY_LIMIT_STATUS
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TDAPI_EXECUTE_QUERY_LIMIT_STATUS>
public enum TDAPI_EXECUTE_QUERY_LIMIT_STATUS extends java.lang.Enum<TDAPI_EXECUTE_QUERY_LIMIT_STATUS>
The status returned by ICommand2.ExecuteQuery if synchronous, or ICommand2.IsActionFinished when asynchronous.
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TDAPI_EXECUTE_QUERY_LIMIT_STATUS
valueOf(java.lang.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.
-
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-