Uses of Class
com.datastax.driver.core.BoundStatement

Packages that use BoundStatement
com.datastax.driver.core The main package for the DataStax Java driver for Cassandra. 
 

Uses of BoundStatement in com.datastax.driver.core
 

Methods in com.datastax.driver.core that return BoundStatement
 BoundStatement PreparedStatement.bind(Object... values)
          Creates a new BoundStatement object and bind its variables to the provided values.
 BoundStatement BoundStatement.bind(Object... values)
          Bound values to the variables of this statement.
 BoundStatement BoundStatement.setBool(int i, boolean v)
          Set the ith value to the provided boolean.
 BoundStatement BoundStatement.setBool(String name, boolean v)
          Set the value for the first occurrence of column name to the provided boolean.
 BoundStatement BoundStatement.setBytes(int i, ByteBuffer v)
          Sets the ith value to the provided byte buffer.
 BoundStatement BoundStatement.setBytes(String name, ByteBuffer v)
          Sets the value for the first occurrence of column name to the provided byte buffer.
 BoundStatement BoundStatement.setBytesUnsafe(int i, ByteBuffer v)
          Sets the ith value to the provided byte buffer.
 BoundStatement BoundStatement.setBytesUnsafe(String name, ByteBuffer v)
          Sets the value for the first occurrence of column name to the provided byte buffer.
 BoundStatement BoundStatement.setDate(int i, Date v)
          Set the ith value to the provided date.
 BoundStatement BoundStatement.setDate(String name, Date v)
          Sets the value for the first occurrence of column name to the provided date.
 BoundStatement BoundStatement.setDecimal(int i, BigDecimal v)
          Sets the ith value to the provided big decimal.
 BoundStatement BoundStatement.setDecimal(String name, BigDecimal v)
          Sets the value for the first occurrence of column name to the provided big decimal.
 BoundStatement BoundStatement.setDouble(int i, double v)
          Sets the ith value to the provided double.
 BoundStatement BoundStatement.setDouble(String name, double v)
          Sets the value for the first occurrence of column name to the provided double.
 BoundStatement BoundStatement.setFloat(int i, float v)
          Sets the ith value to the provided float.
 BoundStatement BoundStatement.setFloat(String name, float v)
          Sets the value for the first occurrence of column name to the provided float.
 BoundStatement BoundStatement.setInet(int i, InetAddress v)
          Sets the ith value to the provided inet address.
 BoundStatement BoundStatement.setInet(String name, InetAddress v)
          Sets the value for the first occurrence of column name to the provided inet address.
 BoundStatement BoundStatement.setInt(int i, int v)
          Set the ith value to the provided integer.
 BoundStatement BoundStatement.setInt(String name, int v)
          Set the value for the first occurrence of column name to the provided integer.
<T> BoundStatement
BoundStatement.setList(int i, List<T> v)
          Sets the ith value to the provided list.
<T> BoundStatement
BoundStatement.setList(String name, List<T> v)
          Sets the value for the first occurrence of column name to the provided list.
 BoundStatement BoundStatement.setLong(int i, long v)
          Set the ith value to the provided long.
 BoundStatement BoundStatement.setLong(String name, long v)
          Set the value for the first occurrence of column name to the provided long.
<K,V> BoundStatement
BoundStatement.setMap(int i, Map<K,V> v)
          Sets the ith value to the provided map.
<K,V> BoundStatement
BoundStatement.setMap(String name, Map<K,V> v)
          Sets the value for the first occurrence of column name to the provided map.
<T> BoundStatement
BoundStatement.setSet(int i, Set<T> v)
          Sets the ith value to the provided set.
<T> BoundStatement
BoundStatement.setSet(String name, Set<T> v)
          Sets the value for the first occurrence of column name to the provided set.
 BoundStatement BoundStatement.setString(int i, String v)
          Sets the ith value to the provided string.
 BoundStatement BoundStatement.setString(String name, String v)
          Sets the value for the first occurrence of column name to the provided string.
 BoundStatement BoundStatement.setUUID(int i, UUID v)
          Sets the ith value to the provided UUID.
 BoundStatement BoundStatement.setUUID(String name, UUID v)
          Sets the value for the first occurrence of column name to the provided UUID.
 BoundStatement BoundStatement.setVarint(int i, BigInteger v)
          Sets the ith value to the provided big integer.
 BoundStatement BoundStatement.setVarint(String name, BigInteger v)
          Sets the value for the first occurrence of column name to the provided big integer.
 



Copyright © 2013. All Rights Reserved.