Uses of Class
org.apache.cassandra.db.filter.RowFilter.Expression
-
-
Uses of RowFilter.Expression in org.apache.cassandra.db.filter
Subclasses of RowFilter.Expression in org.apache.cassandra.db.filter Modifier and Type Class Description static classRowFilter.CustomExpressionA custom index expression for use with 2i implementations which support custom syntax and which are not necessarily linked to a single column in the base table.static classRowFilter.SimpleExpressionAn expression of the form 'column' 'op' 'value'.static classRowFilter.UserExpressionA user defined filtering expression.Fields in org.apache.cassandra.db.filter with type parameters of type RowFilter.Expression Modifier and Type Field Description protected java.util.List<RowFilter.Expression>RowFilter. expressionsMethods in org.apache.cassandra.db.filter that return types with arguments of type RowFilter.Expression Modifier and Type Method Description java.util.List<RowFilter.Expression>RowFilter. getExpressions()java.util.Iterator<RowFilter.Expression>RowFilter. iterator()Methods in org.apache.cassandra.db.filter with parameters of type RowFilter.Expression Modifier and Type Method Description RowFilterRowFilter. without(RowFilter.Expression expression)Returns this filter but without the provided expression.Method parameters in org.apache.cassandra.db.filter with type arguments of type RowFilter.Expression Modifier and Type Method Description protected abstract RowFilterRowFilter. withNewExpressions(java.util.List<RowFilter.Expression> expressions)Constructor parameters in org.apache.cassandra.db.filter with type arguments of type RowFilter.Expression Constructor Description RowFilter(java.util.List<RowFilter.Expression> expressions) -
Uses of RowFilter.Expression in org.apache.cassandra.index
Methods in org.apache.cassandra.index with parameters of type RowFilter.Expression Modifier and Type Method Description java.util.Optional<Index>IndexRegistry. getBestIndexFor(RowFilter.Expression expression)java.util.Optional<Index>SecondaryIndexManager. getBestIndexFor(RowFilter.Expression expression) -
Uses of RowFilter.Expression in org.apache.cassandra.index.internal
Constructors in org.apache.cassandra.index.internal with parameters of type RowFilter.Expression Constructor Description CassandraIndexSearcher(ReadCommand command, RowFilter.Expression expression, CassandraIndex index) -
Uses of RowFilter.Expression in org.apache.cassandra.index.internal.composites
Constructors in org.apache.cassandra.index.internal.composites with parameters of type RowFilter.Expression Constructor Description CompositesSearcher(ReadCommand command, RowFilter.Expression expression, CassandraIndex index) -
Uses of RowFilter.Expression in org.apache.cassandra.index.internal.keys
Constructors in org.apache.cassandra.index.internal.keys with parameters of type RowFilter.Expression Constructor Description KeysSearcher(ReadCommand command, RowFilter.Expression expression, CassandraIndex indexer) -
Uses of RowFilter.Expression in org.apache.cassandra.index.sasi.plan
Fields in org.apache.cassandra.index.sasi.plan with type parameters of type RowFilter.Expression Modifier and Type Field Description protected java.util.List<RowFilter.Expression>Operation.Builder. expressionsMethods in org.apache.cassandra.index.sasi.plan that return types with arguments of type RowFilter.Expression Modifier and Type Method Description java.util.Collection<RowFilter.Expression>QueryController. getExpressions()Methods in org.apache.cassandra.index.sasi.plan with parameters of type RowFilter.Expression Modifier and Type Method Description voidOperation.Builder. add(RowFilter.Expression e)ColumnIndexQueryController. getIndex(RowFilter.Expression expression)Method parameters in org.apache.cassandra.index.sasi.plan with type arguments of type RowFilter.Expression Modifier and Type Method Description voidOperation.Builder. add(java.util.Collection<RowFilter.Expression> newExpressions)protected static com.google.common.collect.ListMultimap<ColumnMetadata,Expression>Operation. analyzeGroup(QueryController controller, Operation.OperationType op, java.util.List<RowFilter.Expression> expressions)Constructors in org.apache.cassandra.index.sasi.plan with parameters of type RowFilter.Expression Constructor Description Builder(Operation.OperationType operation, QueryController controller, RowFilter.Expression... columns)
-