Package com.veeva.vault.sdk.api.query
Interface QueryDescribeResult
public interface QueryDescribeResult
Represents the Query Describe result for the main query.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves Query Describe information for the fields in theSELECTclause of the main query.Retrieves Query Describe information for any outer join subqueries.Retrieves Query Describe information for the main query target.
-
Method Details
-
getTarget
QueryDescribeTarget getTarget()Retrieves Query Describe information for the main query target.- Returns:
- a
QueryDescribeTargetdescribing the main query target
-
getFields
List<QueryDescribeField> getFields()Retrieves Query Describe information for the fields in theSELECTclause of the main query.- Returns:
- a List of
QueryDescribeFields for the main query
-
getSubqueries
List<QueryDescribeSubqueryResult> getSubqueries()Retrieves Query Describe information for any outer join subqueries.- Returns:
- a List of
QueryDescribeSubqueryResults if any outer join subqueries exist on the query, otherwise empty List
-