Uses of Interface
com.netflix.astyanax.query.IndexQuery

Packages that use IndexQuery
com.netflix.astyanax.query   
com.netflix.astyanax.thrift   
 

Uses of IndexQuery in com.netflix.astyanax.query
 

Methods in com.netflix.astyanax.query that return IndexQuery
 IndexQuery<K,C> IndexQuery.addPreparedExpressions(Collection<PreparedIndexExpression<K,C>> expressions)
          Add a set of prepare index expressions.
 IndexQuery<K,C> IndexQuery.autoPaginateRows(boolean autoPaginate)
          Automatically sets the next start key so that the next call to execute will fetch the next block of rows
 IndexQuery<K,C> ColumnFamilyQuery.searchWithIndex()
          Search for keys matching the provided index clause
 IndexQuery<K,C> IndexQuery.setIsPaginating()
          Deprecated. autoPaginateRows()
 IndexQuery<K,C> IndexQuery.setLimit(int count)
          Deprecated. Use setRowLimit instead
 IndexQuery<K,C> IndexQuery.setRowLimit(int count)
          Limits the number of rows returned
 IndexQuery<K,C> IndexQuery.setStartKey(K key)
          ?
 IndexQuery<K,C> IndexValueExpression.value(boolean value)
           
 IndexQuery<K,C> IndexValueExpression.value(byte[] value)
           
 IndexQuery<K,C> IndexValueExpression.value(ByteBuffer value)
           
 IndexQuery<K,C> IndexValueExpression.value(Date value)
           
 IndexQuery<K,C> IndexValueExpression.value(double value)
           
 IndexQuery<K,C> IndexValueExpression.value(int value)
           
 IndexQuery<K,C> IndexValueExpression.value(long value)
           
 IndexQuery<K,C> IndexValueExpression.value(String value)
           
 IndexQuery<K,C> IndexValueExpression.value(UUID value)
           
<V> IndexQuery<K,C>
IndexValueExpression.value(V value, Serializer<V> valueSerializer)
           
 IndexQuery<K,C> IndexQuery.withColumnRange(ByteBuffer startColumn, ByteBuffer endColumn, boolean reversed, int count)
          Specify a range and provide pre-constructed start and end columns.
 IndexQuery<K,C> IndexQuery.withColumnRange(ByteBufferRange range)
          Specify a range of composite columns.
 IndexQuery<K,C> IndexQuery.withColumnRange(C startColumn, C endColumn, boolean reversed, int count)
          Specify a range of columns to return.
 IndexQuery<K,C> IndexQuery.withColumnSlice(C... columns)
          Specify a non-contiguous set of columns to retrieve.
 IndexQuery<K,C> IndexQuery.withColumnSlice(Collection<C> columns)
          Specify a non-contiguous set of columns to retrieve.
 IndexQuery<K,C> IndexQuery.withColumnSlice(ColumnSlice<C> columns)
          Use this when your application caches the column slice.
 

Uses of IndexQuery in com.netflix.astyanax.thrift
 

Classes in com.netflix.astyanax.thrift that implement IndexQuery
 class AbstractIndexQueryImpl<K,C>
           
 

Methods in com.netflix.astyanax.thrift that return IndexQuery
 IndexQuery<K,C> AbstractIndexQueryImpl.addPreparedExpressions(Collection<PreparedIndexExpression<K,C>> expressions)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.autoPaginateRows(boolean autoPaginate)
           
 IndexQuery<K,C> ThriftColumnFamilyQueryImpl.searchWithIndex()
           
 IndexQuery<K,C> AbstractIndexQueryImpl.setIsPaginating()
           
 IndexQuery<K,C> AbstractIndexQueryImpl.setLimit(int count)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.setRowLimit(int count)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.setStartKey(K key)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.withColumnRange(ByteBuffer startColumn, ByteBuffer endColumn, boolean reversed, int count)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.withColumnRange(ByteBufferRange range)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.withColumnRange(C startColumn, C endColumn, boolean reversed, int count)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.withColumnSlice(C... columns)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.withColumnSlice(Collection<C> columns)
           
 IndexQuery<K,C> AbstractIndexQueryImpl.withColumnSlice(ColumnSlice<C> slice)
           
 



Copyright © 2012. All Rights Reserved.