All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datastax.oss.driver.api.querybuilder.BuildableQuery Maven / Gradle / Ivy

The newest version!
/*
 * Copyright DataStax, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.datastax.oss.driver.api.querybuilder;

import com.datastax.oss.driver.api.core.CqlSession;
import com.datastax.oss.driver.api.core.cql.SimpleStatement;
import com.datastax.oss.driver.api.core.cql.SimpleStatementBuilder;
import com.datastax.oss.driver.api.core.cql.Statement;
import edu.umd.cs.findbugs.annotations.NonNull;
import java.util.Map;

/**
 * End state for the query builder DSL, which allows the generation of a CQL query.
 *
 * 

The API returns this type as soon as there is enough information for a minimal query (in most * cases, it's still possible to call more methods to keep building). */ public interface BuildableQuery { /** * Builds the CQL query as a raw string. * *

Use this if you plan to pass the query to {@link CqlSession#execute(String)} or {@link * CqlSession#prepare(String)} without any further customization. */ @NonNull String asCql(); /** * Builds the CQL query and wraps it in a simple statement. * *

This is a similar to: * *

{@code
   * SimpleStatement.newInstance(asCql())
   * }
* * In addition, some implementations might try to infer additional statement properties (such as * {@link Statement#isIdempotent()}). */ @NonNull default SimpleStatement build() { return SimpleStatement.newInstance(asCql()); } /** * Builds the CQL query and wraps it in a simple statement, also providing positional values for * bind markers. * *

This is a similar to: * *

{@code
   * SimpleStatement.newInstance(asCql(), values)
   * }
* * In addition, some implementations might try to infer additional statement properties (such as * {@link Statement#isIdempotent()}). */ @NonNull default SimpleStatement build(@NonNull Object... values) { return SimpleStatement.newInstance(asCql(), values); } /** * Builds the CQL query and wraps it in a simple statement, also providing named values for bind * markers. * *

This is a similar to: * *

{@code
   * SimpleStatement.newInstance(asCql(), namedValues)
   * }
* * In addition, some implementations might try to infer additional statement properties (such as * {@link Statement#isIdempotent()}). */ @NonNull default SimpleStatement build(@NonNull Map namedValues) { return SimpleStatement.newInstance(asCql(), namedValues); } /** * Builds the CQL query and wraps it in a simple statement builder. * *

This is equivalent to {@link #build()}, but the builder might be slightly more efficient if * you plan to customize multiple properties on the statement, for example: * *

{@code
   * SimpleStatementBuilder builder =
   *     selectFrom("foo")
   *         .all()
   *         .whereColumn("k").isEqualTo(bindMarker("k"))
   *         .whereColumn("c").isLessThan(bindMarker("c"))
   *         .builder();
   * SimpleStatement statement =
   *     builder.addNamedValue("k", 1).addNamedValue("c", 2).setTracing().build();
   * }
* * In addition, some implementations might try to infer additional statement properties (such as * {@link Statement#isIdempotent()}). */ @NonNull default SimpleStatementBuilder builder() { return SimpleStatement.builder(asCql()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy