
com.github.helenusdriver.driver.Insert Maven / Gradle / Ivy
Show all versions of api Show documentation
/*
* Copyright (C) 2015-2015 The Helenus Driver Project Authors.
*
* 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.github.helenusdriver.driver;
/**
* The Insert
interface extends the functionality of Cassandra's
* {@link com.datastax.driver.core.querybuilder.Insert} class to provide support
* for POJOs.
*
* @copyright 2015-2015 The Helenus Driver Project Authors
*
* @author The Helenus Driver Project Authors
* @version 1 - Jan 15, 2015 - paouelle - Creation
*
* @param The type of POJO associated with this statement.
*
* @since 1.0
*/
public interface Insert
extends Statement, BatchableStatement {
/**
* Adds all column/value pairs from the POJO object to the values inserted by
* this INSERT statement.
*
* @author paouelle
*
* @return this INSERT statement
*/
public Insert valuesFromObject();
/**
* Adds a column/value pair to the values inserted by this INSERT statement.
*
* Note: The primary key and mandatory columns are always added to the
* insert statement.
*
* @author paouelle
*
* @param name the name of the column to insert
* @return this INSERT statement.
* @throws NullPointerException if name
is null
* @throws IllegalArgumentException if the column name is not defined
* by the POJO
*/
public Insert value(String name);
/**
* Adds column/value pairs to the values inserted by this INSERT statement.
*
* Note: The primary key and mandatory columns are always added to the
* insert statement.
*
* @author paouelle
*
* @param names the names of the columns to insert
* @return this INSERT statement.
* @throws NullPointerException if any of the column names are null
* @throws IllegalArgumentException if any of the column names are not defined
* by the POJO
*/
public Insert values(String... names);
/**
* Adds a new options for this INSERT statement.
*
* @author paouelle
*
* @param using the option to add.
* @return the options of this INSERT statement.
*/
public Options using(Using using);
/**
* Sets the 'IF NOT EXISTS' option for this INSERT statement.
*
* An insert with that option will not succeed unless the row does not exist
* at the time the insertion is execution. The existence check and insertions
* are done transactionally in the sense that if multiple clients attempt to
* create a given row with this option, then at most one may succeed.
*
* Please keep in mind that using this option has a non negligible performance
* impact and should be avoided when possible.
*
* @author paouelle
*
* @return this INSERT statement.
*/
public Insert ifNotExists();
/**
* The Options
interface defines the options of an INSERT
* statement.
*
* @copyright 2015-2015 The Helenus Driver Project Authors
*
* @author The Helenus Driver Project Authors
* @version 1 - Jan 15, 2015 - paouelle - Creation
*
* @param The type of POJO associated with the statement.
*
* @since 1.0
*/
public interface Options
extends Statement, BatchableStatement {
/**
* Adds the provided option.
*
* Note: The primary key and mandatory columns are always added to the
* INSERT statement.
*
* @author paouelle
*
* @param using an INSERT option.
* @return this {@code Options} object.
*/
public Options and(Using using);
/**
* Adds a column/value pair to the values inserted by this INSERT statement.
*
* Note: The primary key and mandatory columns are always added to the
* insert statement.
*
* @author paouelle
*
* @param name the name of the column to insert
* @return the INSERT statement those options are part of.
* @throws NullPointerException if name
is null
* @throws IllegalArgumentException if the column name is not defined
* by the POJO
*/
public Insert value(String name);
/**
* Adds column/value pairs to the values inserted by this INSERT statement.
*
* Note: The primary key and mandatory columns are always added to the
* insert statement.
*
* @author paouelle
*
* @param names the names of the columns to insert
* @return the INSERT statement those options are part of.
* @throws NullPointerException if any of the column names are null
* @throws IllegalArgumentException if any of the column names are not defined
* by the POJO
*/
public Insert values(String... names);
}
}