![JAR search and dependency download from the Maven repository](/logo.png)
com.netflix.astyanax.thrift.AbstractThriftCqlPreparedStatement Maven / Gradle / Ivy
The newest version!
package com.netflix.astyanax.thrift;
import java.nio.ByteBuffer;
import java.util.List;
import java.util.UUID;
import com.netflix.astyanax.Serializer;
import com.netflix.astyanax.cql.CqlPreparedStatement;
public abstract class AbstractThriftCqlPreparedStatement implements CqlPreparedStatement {
@Override
public CqlPreparedStatement withByteBufferValue(V value, Serializer serializer) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withValue(ByteBuffer value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withValues(List value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withStringValue(String value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withIntegerValue(Integer value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withBooleanValue(Boolean value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withDoubleValue(Double value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withLongValue(Long value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withFloatValue(Float value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withShortValue(Short value) {
// TODO Auto-generated method stub
return null;
}
@Override
public CqlPreparedStatement withUUIDValue(UUID value) {
// TODO Auto-generated method stub
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy