com.netflix.astyanax.cql
Interface CqlPreparedStatement

All Superinterfaces:
com.netflix.astyanax.Execution<CqlStatementResult>

public interface CqlPreparedStatement
extends com.netflix.astyanax.Execution<CqlStatementResult>


Method Summary
 CqlPreparedStatement withBooleanValue(java.lang.Boolean value)
          Set the next parameter value to this Boolean
<V> CqlPreparedStatement
withByteBufferValue(V value, Serializer<V> serializer)
          Specify a value of custom type for which a convenience method does not exist
 CqlPreparedStatement withDoubleValue(java.lang.Double value)
          Set the next parameter value to this Double
 CqlPreparedStatement withFloatValue(java.lang.Float value)
          Set the next parameter value to this Float
 CqlPreparedStatement withIntegerValue(java.lang.Integer value)
          Set the next parameter value to this Integer
 CqlPreparedStatement withLongValue(java.lang.Long value)
          Set the next parameter value to this Long
 CqlPreparedStatement withShortValue(java.lang.Short value)
          Set the next parameter value to this Short
 CqlPreparedStatement withStringValue(java.lang.String value)
          Set the next parameter value to this String
 CqlPreparedStatement withUUIDValue(java.util.UUID value)
          Set the next parameter value to this Short
 CqlPreparedStatement withValue(java.nio.ByteBuffer value)
          Set the next parameter value to this ByteBuffer
 CqlPreparedStatement withValues(java.util.List<java.nio.ByteBuffer> value)
          Add a list of ByteBuffer values
 
Methods inherited from interface com.netflix.astyanax.Execution
execute, executeAsync
 

Method Detail

withByteBufferValue

<V> CqlPreparedStatement withByteBufferValue(V value,
                                             Serializer<V> serializer)
Specify a value of custom type for which a convenience method does not exist

Parameters:
value -
serializer -
Returns:

withValue

CqlPreparedStatement withValue(java.nio.ByteBuffer value)
Set the next parameter value to this ByteBuffer

Parameters:
value -
Returns:

withValues

CqlPreparedStatement withValues(java.util.List<java.nio.ByteBuffer> value)
Add a list of ByteBuffer values

Parameters:
value -
Returns:

withStringValue

CqlPreparedStatement withStringValue(java.lang.String value)
Set the next parameter value to this String

Parameters:
value -
Returns:

withIntegerValue

CqlPreparedStatement withIntegerValue(java.lang.Integer value)
Set the next parameter value to this Integer

Parameters:
value -
Returns:

withBooleanValue

CqlPreparedStatement withBooleanValue(java.lang.Boolean value)
Set the next parameter value to this Boolean

Parameters:
value -
Returns:

withDoubleValue

CqlPreparedStatement withDoubleValue(java.lang.Double value)
Set the next parameter value to this Double

Parameters:
value -
Returns:

withLongValue

CqlPreparedStatement withLongValue(java.lang.Long value)
Set the next parameter value to this Long

Parameters:
value -
Returns:

withFloatValue

CqlPreparedStatement withFloatValue(java.lang.Float value)
Set the next parameter value to this Float

Parameters:
value -
Returns:

withShortValue

CqlPreparedStatement withShortValue(java.lang.Short value)
Set the next parameter value to this Short

Parameters:
value -
Returns:

withUUIDValue

CqlPreparedStatement withUUIDValue(java.util.UUID value)
Set the next parameter value to this Short

Parameters:
value -
Returns: