@Generated(value="OracleSDKGenerator", comments="API Version: 20200630") public final class DataObjectStandardQuery extends DataObjectQuery
Information required to execute query on data objects. Query is given in standard SQL syntax
providing flexibility to form complex queries such as queries with joins and nested queries.
Note: Objects should always be created or deserialized using the DataObjectStandardQuery.Builder
. This model
distinguishes fields that are null
because they are unset from fields that are explicitly
set to null
. This is done in the setter methods of the DataObjectStandardQuery.Builder
, which maintain a
set of all explicitly set fields called DataObjectStandardQuery.Builder.__explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take the explicitly set
fields into account. The constructor, on the other hand, does not take the explicitly set fields
into account (since the constructor cannot distinguish explicit null
from unset null
).
Modifier and Type | Class and Description |
---|---|
static class |
DataObjectStandardQuery.Builder |
DataObjectQuery.QueryType
EXPLICITLY_SET_FILTER_NAME, EXPLICITLY_SET_PROPERTY_NAME
Constructor and Description |
---|
DataObjectStandardQuery(List<DataObjectBindParameter> bindParams,
Double queryExecutionTimeoutInSeconds,
String statement,
DataObjectQueryTimeFilters timeFilters)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static DataObjectStandardQuery.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
String |
getStatement()
SQL query statement with standard Oracle supported SQL syntax.
|
DataObjectQueryTimeFilters |
getTimeFilters() |
int |
hashCode() |
DataObjectStandardQuery.Builder |
toBuilder() |
String |
toString() |
String |
toString(boolean includeByteArrayContents)
Return a string representation of the object.
|
getBindParams, getQueryExecutionTimeoutInSeconds
markPropertyAsExplicitlySet, wasPropertyExplicitlySet
@Deprecated public DataObjectStandardQuery(List<DataObjectBindParameter> bindParams, Double queryExecutionTimeoutInSeconds, String statement, DataObjectQueryTimeFilters timeFilters)
public static DataObjectStandardQuery.Builder builder()
Create a new builder.
public DataObjectStandardQuery.Builder toBuilder()
public String getStatement()
SQL query statement with standard Oracle supported SQL syntax. - When Warehouse (e.g: Awr hub) data objects are queried, use the actual names of underlying data objects (e.g: tables, views) in the query. The same query that works through JDBC connection with the OperationsInsightsWarehouseUsers credentials will work here and vice-versa. SCHEMA.VIEW syntax can also be used here. - When OPSI data objects are queried, use name of the respective OPSI data object, just like how views are used in a query. Identifier of the OPSI data object cannot be used in the query.
public DataObjectQueryTimeFilters getTimeFilters()
public String toString()
toString
in class DataObjectQuery
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.
toString
in class DataObjectQuery
includeByteArrayContents
- true to include the full contents of byte arrayspublic boolean equals(Object o)
equals
in class DataObjectQuery
public int hashCode()
hashCode
in class DataObjectQuery
Copyright © 2016–2024. All rights reserved.