Uses of Class
org.apache.cassandra.cql3.Term.Raw
-
-
Uses of Term.Raw in org.apache.cassandra.cql3
Subclasses of Term.Raw in org.apache.cassandra.cql3 Modifier and Type Class Description static class
AbstractMarker.INRaw
A raw placeholder for multiple values of the same type for a single column.static class
AbstractMarker.MultiColumnRaw
A MultiColumnRaw version of AbstractMarker.Rawstatic class
AbstractMarker.Raw
A parsed, but non prepared, bind marker.static class
Constants.Literal
static class
Lists.Literal
static class
Maps.Literal
static class
Sets.Literal
static class
Term.MultiColumnRaw
static class
Tuples.INRaw
A raw marker for an IN list of tuples, like "SELECT ...static class
Tuples.Literal
A raw, literal tuple.static class
Tuples.Raw
A raw placeholder for a tuple of values for different multiple columns, each of which may have a different type.class
TypeCast
static class
UserTypes.Literal
Fields in org.apache.cassandra.cql3 declared as Term.Raw Modifier and Type Field Description Term.Raw
Attributes.Raw. timestamp
Term.Raw
Attributes.Raw. timeToLive
Fields in org.apache.cassandra.cql3 with type parameters of type Term.Raw Modifier and Type Field Description java.util.List<Pair<Term.Raw,Term.Raw>>
Maps.Literal. entries
java.util.List<Pair<Term.Raw,Term.Raw>>
Maps.Literal. entries
java.util.Map<FieldIdentifier,Term.Raw>
UserTypes.Literal. entries
Methods in org.apache.cassandra.cql3 that return Term.Raw Modifier and Type Method Description Term.Raw
SingleColumnRelation. getMapKey()
abstract Term.Raw
Json.Prepared. getRawTermForColumn(ColumnMetadata def, boolean defaultUnset)
abstract Term.Raw
Relation. getValue()
Returns the raw value for this relation, or null if this is an IN relation.Term.Raw
SingleColumnRelation. getValue()
Term.Raw
TokenRelation. getValue()
Methods in org.apache.cassandra.cql3 that return types with arguments of type Term.Raw Modifier and Type Method Description java.util.List<? extends Term.Raw>
MultiColumnRelation. getInValues()
abstract java.util.List<? extends Term.Raw>
Relation. getInValues()
Returns the list of raw IN values for this relation, or null if this is not an IN relation.java.util.List<? extends Term.Raw>
SingleColumnRelation. getInValues()
java.util.List<? extends Term.Raw>
TokenRelation. getInValues()
Methods in org.apache.cassandra.cql3 with parameters of type Term.Raw Modifier and Type Method Description protected Term
MultiColumnRelation. toTerm(java.util.List<? extends ColumnSpecification> receivers, Term.Raw raw, java.lang.String keyspace, VariableSpecifications boundNames)
protected abstract Term
Relation. toTerm(java.util.List<? extends ColumnSpecification> receivers, Term.Raw raw, java.lang.String keyspace, VariableSpecifications boundNames)
Converts the specifiedRaw
into aTerm
.protected Term
SingleColumnRelation. toTerm(java.util.List<? extends ColumnSpecification> receivers, Term.Raw raw, java.lang.String keyspace, VariableSpecifications boundNames)
protected Term
TokenRelation. toTerm(java.util.List<? extends ColumnSpecification> receivers, Term.Raw raw, java.lang.String keyspace, VariableSpecifications boundNames)
Method parameters in org.apache.cassandra.cql3 with type arguments of type Term.Raw Modifier and Type Method Description static SingleColumnRelation
SingleColumnRelation. createInRelation(ColumnIdentifier entity, java.util.List<Term.Raw> inValues)
Constructors in org.apache.cassandra.cql3 with parameters of type Term.Raw Constructor Description Addition(Term.Raw value)
ElementDeletion(ColumnIdentifier id, Term.Raw element)
Prepend(Term.Raw value)
SetElement(Term.Raw selector, Term.Raw value)
SetField(FieldIdentifier field, Term.Raw value)
SetValue(Term.Raw value)
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.Substraction(Term.Raw value)
TokenRelation(java.util.List<ColumnIdentifier> entities, Operator type, Term.Raw value)
TypeCast(CQL3Type.Raw type, Term.Raw term)
Constructor parameters in org.apache.cassandra.cql3 with type arguments of type Term.Raw Constructor Description Literal(java.util.List<Term.Raw> elements)
Literal(java.util.List<Pair<Term.Raw,Term.Raw>> entries)
Literal(java.util.List<Pair<Term.Raw,Term.Raw>> entries)
Literal(java.util.List<Term.Raw> elements)
Literal(java.util.List<Term.Raw> elements)
Literal(java.util.Map<FieldIdentifier,Term.Raw> entries)
-
Uses of Term.Raw in org.apache.cassandra.cql3.conditions
Methods in org.apache.cassandra.cql3.conditions that return Term.Raw Modifier and Type Method Description Term.Raw
ColumnCondition.Raw. getValue()
Methods in org.apache.cassandra.cql3.conditions with parameters of type Term.Raw 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.static ColumnCondition.Raw
ColumnCondition.Raw. collectionInCondition(Term.Raw collectionElement, java.util.List<Term.Raw> inValues)
An IN condition on a collection element.static ColumnCondition.Raw
ColumnCondition.Raw. collectionInCondition(Term.Raw collectionElement, AbstractMarker.INRaw inMarker)
An IN condition on a collection element with a single marker.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.Method parameters in org.apache.cassandra.cql3.conditions with type arguments of type Term.Raw Modifier and Type Method Description static ColumnCondition.Raw
ColumnCondition.Raw. collectionInCondition(Term.Raw collectionElement, java.util.List<Term.Raw> inValues)
An IN condition on a collection element.static ColumnCondition.Raw
ColumnCondition.Raw. simpleInCondition(java.util.List<Term.Raw> inValues)
An IN condition on a column.static ColumnCondition.Raw
ColumnCondition.Raw. udtFieldInCondition(FieldIdentifier udtField, java.util.List<Term.Raw> inValues)
An IN condition on a collection element. -
Uses of Term.Raw in org.apache.cassandra.cql3.functions
Subclasses of Term.Raw in org.apache.cassandra.cql3.functions Modifier and Type Class Description static class
FunctionCall.Raw
Methods in org.apache.cassandra.cql3.functions with parameters of type Term.Raw Modifier and Type Method Description static FunctionCall.Raw
FunctionCall.Raw. newNegation(Term.Raw raw)
static FunctionCall.Raw
FunctionCall.Raw. newOperation(char operator, Term.Raw left, Term.Raw right)
Constructor parameters in org.apache.cassandra.cql3.functions with type arguments of type Term.Raw Constructor Description Raw(FunctionName name, java.util.List<Term.Raw> terms)
-
Uses of Term.Raw in org.apache.cassandra.cql3.restrictions
Fields in org.apache.cassandra.cql3.restrictions declared as Term.Raw Modifier and Type Field Description Term.Raw
CustomIndexExpression. valueRaw
Constructors in org.apache.cassandra.cql3.restrictions with parameters of type Term.Raw Constructor Description CustomIndexExpression(QualifiedName targetIndex, Term.Raw value)
-
Uses of Term.Raw in org.apache.cassandra.cql3.selection
Fields in org.apache.cassandra.cql3.selection declared as Term.Raw Modifier and Type Field Description Term.Raw
Selectable.WithElementSelection. element
Term.Raw
Selectable.WithSliceSelection. from
Term.Raw
Selectable.WithSliceSelection. to
Constructors in org.apache.cassandra.cql3.selection with parameters of type Term.Raw Constructor Description Raw(Selectable.Raw selected, Term.Raw element)
Raw(Selectable.Raw selected, Term.Raw from, Term.Raw to)
Raw(Term.Raw term)
WithTerm(Term.Raw rawTerm)
-
Uses of Term.Raw in org.apache.cassandra.cql3.statements
Fields in org.apache.cassandra.cql3.statements declared as Term.Raw Modifier and Type Field Description Term.Raw
SelectStatement.RawStatement. limit
Term.Raw
SelectStatement.RawStatement. perPartitionLimit
Constructors in org.apache.cassandra.cql3.statements with parameters of type Term.Raw Constructor Description RawStatement(QualifiedName cfName, SelectStatement.Parameters parameters, java.util.List<RawSelector> selectClause, WhereClause whereClause, Term.Raw limit, Term.Raw perPartitionLimit)
-
Uses of Term.Raw in org.apache.cassandra.cql3.statements.schema
Constructors in org.apache.cassandra.cql3.statements.schema with parameters of type Term.Raw Constructor Description CreateAggregateStatement(java.lang.String keyspaceName, java.lang.String aggregateName, java.util.List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawStateType, FunctionName stateFunctionName, FunctionName finalFunctionName, Term.Raw rawInitialValue, boolean orReplace, boolean ifNotExists)
Raw(FunctionName aggregateName, java.util.List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawStateType, java.lang.String stateFunctionName, java.lang.String finalFunctionName, Term.Raw rawInitialValue, boolean orReplace, boolean ifNotExists)
-