* The query string that you want prepare. *
*/ private String queryString; /** ** A list of SELECT clause columns of the submitted query string. *
*/ private java.util.List* A list of parameters used in the submitted query string. *
*/ private java.util.List* The query string that you want prepare. *
* * @param queryString * The query string that you want prepare. */ public void setQueryString(String queryString) { this.queryString = queryString; } /** ** The query string that you want prepare. *
* * @return The query string that you want prepare. */ public String getQueryString() { return this.queryString; } /** ** The query string that you want prepare. *
* * @param queryString * The query string that you want prepare. * @return Returns a reference to this object so that method calls can be chained together. */ public PrepareQueryResult withQueryString(String queryString) { setQueryString(queryString); return this; } /** ** A list of SELECT clause columns of the submitted query string. *
* * @return A list of SELECT clause columns of the submitted query string. */ public java.util.List* A list of SELECT clause columns of the submitted query string. *
* * @param columns * A list of SELECT clause columns of the submitted query string. */ public void setColumns(java.util.Collection* A list of SELECT clause columns of the submitted query string. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setColumns(java.util.Collection)} or {@link #withColumns(java.util.Collection)} if you want to override * the existing values. *
* * @param columns * A list of SELECT clause columns of the submitted query string. * @return Returns a reference to this object so that method calls can be chained together. */ public PrepareQueryResult withColumns(SelectColumn... columns) { if (this.columns == null) { setColumns(new java.util.ArrayList* A list of SELECT clause columns of the submitted query string. *
* * @param columns * A list of SELECT clause columns of the submitted query string. * @return Returns a reference to this object so that method calls can be chained together. */ public PrepareQueryResult withColumns(java.util.Collection* A list of parameters used in the submitted query string. *
* * @return A list of parameters used in the submitted query string. */ public java.util.List* A list of parameters used in the submitted query string. *
* * @param parameters * A list of parameters used in the submitted query string. */ public void setParameters(java.util.Collection* A list of parameters used in the submitted query string. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setParameters(java.util.Collection)} or {@link #withParameters(java.util.Collection)} if you want to * override the existing values. *
* * @param parameters * A list of parameters used in the submitted query string. * @return Returns a reference to this object so that method calls can be chained together. */ public PrepareQueryResult withParameters(ParameterMapping... parameters) { if (this.parameters == null) { setParameters(new java.util.ArrayList* A list of parameters used in the submitted query string. *
* * @param parameters * A list of parameters used in the submitted query string. * @return Returns a reference to this object so that method calls can be chained together. */ public PrepareQueryResult withParameters(java.util.Collection