Uses of Class
org.apache.cassandra.cql3.Operator
-
-
Uses of Operator in org.apache.cassandra.cql3
Fields in org.apache.cassandra.cql3 declared as Operator Modifier and Type Field Description protected Operator
Relation. relationType
Methods in org.apache.cassandra.cql3 that return Operator Modifier and Type Method Description Operator
Relation. operator()
static Operator
Operator. readFrom(java.io.DataInput input)
Deserializes aOperator
instance from the specified input.static Operator
Operator. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Operator[]
Operator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.cassandra.cql3 with parameters of type Operator Modifier and Type Method Description static MultiColumnRelation
MultiColumnRelation. createNonInRelation(java.util.List<ColumnIdentifier> entities, Operator relationType, Term.MultiColumnRaw valuesOrMarker)
Creates a multi-column EQ, LT, LTE, GT, or GTE relation.protected Restriction
MultiColumnRelation. newLikeRestriction(TableMetadata table, VariableSpecifications boundNames, Operator operator)
protected abstract Restriction
Relation. newLikeRestriction(TableMetadata table, VariableSpecifications boundNames, Operator operator)
protected Restriction
SingleColumnRelation. newLikeRestriction(TableMetadata table, VariableSpecifications boundNames, Operator operator)
protected Restriction
TokenRelation. newLikeRestriction(TableMetadata table, VariableSpecifications boundNames, Operator operator)
Constructors in org.apache.cassandra.cql3 with parameters of type Operator Constructor Description SingleColumnRelation(ColumnIdentifier entity, Operator type, Term.Raw value)
Creates a new relation.SingleColumnRelation(ColumnIdentifier entity, Term.Raw mapKey, Operator type, Term.Raw value)
Creates a new relation.TokenRelation(java.util.List<ColumnIdentifier> entities, Operator type, Term.Raw value)
-
Uses of Operator in org.apache.cassandra.cql3.conditions
Fields in org.apache.cassandra.cql3.conditions declared as Operator Modifier and Type Field Description Operator
ColumnCondition.Bound. comparisonOperator
Operator
ColumnCondition. operator
Methods in org.apache.cassandra.cql3.conditions with parameters of type Operator Modifier and Type Method Description static ColumnCondition.Raw
ColumnCondition.Raw. collectionCondition(Term.Raw value, Term.Raw collectionElement, Operator op)
A condition on a collection element.protected static boolean
ColumnCondition.Bound. compareWithOperator(Operator operator, AbstractType<?> type, java.nio.ByteBuffer value, java.nio.ByteBuffer otherValue)
Returns true if the operator is satisfied (i.e.static ColumnCondition
ColumnCondition. condition(ColumnMetadata column, FieldIdentifier udtField, Operator op, Terms terms)
A UDT column, simple condition.static ColumnCondition
ColumnCondition. condition(ColumnMetadata column, Operator op, Terms terms)
A regular column, simple condition.static ColumnCondition
ColumnCondition. condition(ColumnMetadata column, Term collectionElement, Operator op, Terms terms)
A collection column, simple condition.protected static boolean
ColumnCondition. evaluateComparisonWithOperator(int comparison, Operator operator)
static ColumnCondition.Raw
ColumnCondition.Raw. simpleCondition(Term.Raw value, Operator op)
A condition on a column.static ColumnCondition.Raw
ColumnCondition.Raw. udtFieldCondition(Term.Raw value, FieldIdentifier udtField, Operator op)
A condition on a UDT field.Constructors in org.apache.cassandra.cql3.conditions with parameters of type Operator Constructor Description Bound(ColumnMetadata column, Operator operator)
-
Uses of Operator in org.apache.cassandra.cql3.restrictions
Constructors in org.apache.cassandra.cql3.restrictions with parameters of type Operator Constructor Description LikeRestriction(ColumnMetadata columnDef, Operator operator, Term value)
-
Uses of Operator in org.apache.cassandra.db
Methods in org.apache.cassandra.db with parameters of type Operator Modifier and Type Method Description AbstractReadCommandBuilder
AbstractReadCommandBuilder. filterOn(java.lang.String column, Operator op, java.lang.Object value)
-
Uses of Operator in org.apache.cassandra.db.filter
Fields in org.apache.cassandra.db.filter declared as Operator Modifier and Type Field Description protected Operator
RowFilter.Expression. operator
Methods in org.apache.cassandra.db.filter that return Operator Modifier and Type Method Description Operator
RowFilter.Expression. operator()
Methods in org.apache.cassandra.db.filter with parameters of type Operator Modifier and Type Method Description RowFilter.SimpleExpression
RowFilter. add(ColumnMetadata def, Operator op, java.nio.ByteBuffer value)
void
RowFilter. addMapEquality(ColumnMetadata def, java.nio.ByteBuffer key, Operator op, java.nio.ByteBuffer value)
Constructors in org.apache.cassandra.db.filter with parameters of type Operator Constructor Description Expression(ColumnMetadata column, Operator operator, java.nio.ByteBuffer value)
UserExpression(ColumnMetadata column, Operator operator, java.nio.ByteBuffer value)
-
Uses of Operator in org.apache.cassandra.index
Methods in org.apache.cassandra.index with parameters of type Operator Modifier and Type Method Description boolean
Index. supportsExpression(ColumnMetadata column, Operator operator)
Called to determine whether this index can provide a searcher to execute a query on the supplied column using the specified operator. -
Uses of Operator in org.apache.cassandra.index.internal
Methods in org.apache.cassandra.index.internal with parameters of type Operator Modifier and Type Method Description boolean
CassandraIndex. supportsExpression(ColumnMetadata column, Operator operator)
protected boolean
CassandraIndex. supportsOperator(ColumnMetadata indexedColumn, Operator operator)
Returns true if an index of this type can support search predicates of the form [column] OPERATOR [value] -
Uses of Operator in org.apache.cassandra.index.internal.composites
Methods in org.apache.cassandra.index.internal.composites with parameters of type Operator Modifier and Type Method Description boolean
CollectionKeyIndex. supportsOperator(ColumnMetadata indexedColumn, Operator operator)
boolean
CollectionValueIndex. supportsOperator(ColumnMetadata indexedColumn, Operator operator)
-
Uses of Operator in org.apache.cassandra.index.sasi
Methods in org.apache.cassandra.index.sasi with parameters of type Operator Modifier and Type Method Description boolean
SASIIndex. supportsExpression(ColumnMetadata column, Operator operator)
-
Uses of Operator in org.apache.cassandra.index.sasi.conf
Methods in org.apache.cassandra.index.sasi.conf with parameters of type Operator Modifier and Type Method Description boolean
ColumnIndex. supports(Operator op)
-
Uses of Operator in org.apache.cassandra.index.sasi.plan
Methods in org.apache.cassandra.index.sasi.plan with parameters of type Operator Modifier and Type Method Description Expression
Expression. add(Operator op, java.nio.ByteBuffer value)
static Expression.Op
Expression.Op. valueOf(Operator operator)
Returns the enum constant of this type with the specified name.
-