Uses of Class
org.apache.cassandra.cql3.ColumnIdentifier
Packages that use ColumnIdentifier
Package
Description
-
Uses of ColumnIdentifier in org.apache.cassandra.cql3
Fields in org.apache.cassandra.cql3 declared as ColumnIdentifierModifier and TypeFieldDescriptionstatic final ColumnIdentifierJson.JSON_COLUMN_IDfinal ColumnIdentifierColumnSpecification.nameMethods in org.apache.cassandra.cql3 that return ColumnIdentifierModifier and TypeMethodDescriptionOperation.ColumnDeletion.affectedColumn()Operation.ElementDeletion.affectedColumn()Operation.FieldDeletion.affectedColumn()Operation.RawDeletion.affectedColumn()The name of the column affected by this delete operation.ColumnIdentifier.clone(ByteBufferCloner cloner) SingleColumnRelation.getEntity()static ColumnIdentifierColumnIdentifier.getInterned(String rawText, boolean keepCase) static ColumnIdentifierColumnIdentifier.getInterned(ByteBuffer bytes, AbstractType<?> type) static ColumnIdentifierColumnIdentifier.getInterned(AbstractType<?> type, ByteBuffer bytes, String text) Methods in org.apache.cassandra.cql3 that return types with arguments of type ColumnIdentifierMethods in org.apache.cassandra.cql3 with parameters of type ColumnIdentifierModifier and TypeMethodDescriptionCqlBuilder.append(ColumnIdentifier column) intColumnIdentifier.compareTo(ColumnIdentifier that) static SingleColumnRelationSingleColumnRelation.createInRelation(ColumnIdentifier entity, List<Term.Raw> inValues) QueryOptions.getJsonColumnValue(int bindIndex, ColumnIdentifier columnName, Collection<ColumnMetadata> expectedReceivers) Returns the term corresponding to columncolumnNamein the JSON value of bind indexbindIndex.MultiColumnRelation.renameIdentifier(ColumnIdentifier from, ColumnIdentifier to) abstract RelationRelation.renameIdentifier(ColumnIdentifier from, ColumnIdentifier to) Renames an identifier in this Relation, if applicable.SingleColumnRelation.renameIdentifier(ColumnIdentifier from, ColumnIdentifier to) TokenRelation.renameIdentifier(ColumnIdentifier from, ColumnIdentifier to) WhereClause.renameIdentifier(ColumnIdentifier from, ColumnIdentifier to) Renames identifiers in all relationsColumnSpecification.withAlias(ColumnIdentifier alias) Returns a newColumnSpecificationfor the same column but with the specified alias.Method parameters in org.apache.cassandra.cql3 with type arguments of type ColumnIdentifierModifier and TypeMethodDescriptionstatic MultiColumnRelationMultiColumnRelation.createInRelation(List<ColumnIdentifier> entities, List<? extends Term.MultiColumnRaw> inValues) Creates a multi-column IN relation with a list of IN values or markers.static MultiColumnRelationMultiColumnRelation.createNonInRelation(List<ColumnIdentifier> entities, Operator relationType, Term.MultiColumnRaw valuesOrMarker) Creates a multi-column EQ, LT, LTE, GT, or GTE relation.static MultiColumnRelationMultiColumnRelation.createSingleMarkerInRelation(List<ColumnIdentifier> entities, Tuples.INRaw inMarker) Creates a multi-column IN relation with a marker for the IN values.voidCQLStatement.Raw.setBindVariables(List<ColumnIdentifier> variables) Constructors in org.apache.cassandra.cql3 with parameters of type ColumnIdentifierModifierConstructorDescriptionColumnSpecification(String ksName, String cfName, ColumnIdentifier name, AbstractType<?> type) ElementDeletion(ColumnIdentifier id, Term.Raw element) FieldDeletion(ColumnIdentifier id, FieldIdentifier field) 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.UTName(ColumnIdentifier ksName, ColumnIdentifier utName) Constructor parameters in org.apache.cassandra.cql3 with type arguments of type ColumnIdentifierModifierConstructorDescriptionTokenRelation(List<ColumnIdentifier> entities, Operator type, Term.Raw value) VariableSpecifications(List<ColumnIdentifier> variableNames) -
Uses of ColumnIdentifier in org.apache.cassandra.cql3.functions
Fields in org.apache.cassandra.cql3.functions with type parameters of type ColumnIdentifierMethods in org.apache.cassandra.cql3.functions that return types with arguments of type ColumnIdentifierMethod parameters in org.apache.cassandra.cql3.functions with type arguments of type ColumnIdentifierModifier and TypeMethodDescriptionstatic UDFunctionUDFunction.create(FunctionName name, List<ColumnIdentifier> argNames, List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, String language, String body) static UDFunctionUDFunction.createBrokenFunction(FunctionName name, List<ColumnIdentifier> argNames, List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, String language, String body, InvalidRequestException reason) It can happen that a function has been declared (is listed in the scheam) but cannot be loaded (maybe only on some nodes).static UDFunctionUDFunction.tryCreate(FunctionName name, List<ColumnIdentifier> argNames, List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, String language, String body) Constructor parameters in org.apache.cassandra.cql3.functions with type arguments of type ColumnIdentifierModifierConstructorDescriptionprotectedUDFunction(FunctionName name, List<ColumnIdentifier> argNames, List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, String language, String body) -
Uses of ColumnIdentifier in org.apache.cassandra.cql3.functions.masking
Methods in org.apache.cassandra.cql3.functions.masking with parameters of type ColumnIdentifierModifier and TypeMethodDescriptionColumnMask.Raw.prepare(String keyspace, String table, ColumnIdentifier column, AbstractType<?> type) -
Uses of ColumnIdentifier in org.apache.cassandra.cql3.selection
Fields in org.apache.cassandra.cql3.selection declared as ColumnIdentifierConstructors in org.apache.cassandra.cql3.selection with parameters of type ColumnIdentifier -
Uses of ColumnIdentifier in org.apache.cassandra.cql3.statements
Fields in org.apache.cassandra.cql3.statements declared as ColumnIdentifierModifier and TypeFieldDescriptionstatic final ColumnIdentifierModificationStatement.CAS_RESULT_COLUMNMethods in org.apache.cassandra.cql3.statements that return types with arguments of type ColumnIdentifierConstructor parameters in org.apache.cassandra.cql3.statements with type arguments of type ColumnIdentifierModifierConstructorDescriptionprotectedParsed(QualifiedName name, StatementType type, Attributes.Raw attrs, List<Pair<ColumnIdentifier, ColumnCondition.Raw>> conditions, boolean ifNotExists, boolean ifExists) ParsedInsert(QualifiedName name, Attributes.Raw attrs, List<ColumnIdentifier> columnNames, List<Term.Raw> columnValues, boolean ifNotExists) A parsedINSERTstatement.ParsedUpdate(QualifiedName name, Attributes.Raw attrs, List<Pair<ColumnIdentifier, Operation.RawUpdate>> updates, WhereClause whereClause, List<Pair<ColumnIdentifier, ColumnCondition.Raw>> conditions, boolean ifExists) Creates a new UpdateStatement from a column family name, columns map, consistency level, and key term. -
Uses of ColumnIdentifier in org.apache.cassandra.cql3.statements.schema
Fields in org.apache.cassandra.cql3.statements.schema declared as ColumnIdentifierMethods in org.apache.cassandra.cql3.statements.schema with parameters of type ColumnIdentifierModifier and TypeMethodDescriptionvoidAlterTableStatement.Raw.add(ColumnIdentifier name, CQL3Type.Raw type, boolean isStatic, ColumnMask.Raw mask) voidCreateTableStatement.Raw.addColumn(ColumnIdentifier column, CQL3Type.Raw type, boolean isStatic, ColumnMask.Raw mask) voidAlterTableStatement.Raw.alter(ColumnIdentifier name, CQL3Type.Raw type) voidAlterTableStatement.Raw.drop(ColumnIdentifier name) voidCreateTableStatement.Raw.extendClusteringOrder(ColumnIdentifier column, boolean ascending) voidCreateViewStatement.Raw.extendClusteringOrder(ColumnIdentifier column, boolean ascending) static IndexTarget.RawIndexTarget.Raw.fullCollection(ColumnIdentifier c) static IndexTarget.RawIndexTarget.Raw.keysAndValuesOf(ColumnIdentifier c) static IndexTarget.RawIndexTarget.Raw.keysOf(ColumnIdentifier c) voidCreateTableStatement.Raw.markClusteringColumn(ColumnIdentifier column) voidCreateViewStatement.Raw.markClusteringColumn(ColumnIdentifier column) voidAlterTableStatement.Raw.mask(ColumnIdentifier name, ColumnMask.Raw mask) voidAlterTableStatement.Raw.rename(ColumnIdentifier from, ColumnIdentifier to) voidCreateTableStatement.Raw.setPartitionKeyColumn(ColumnIdentifier column) static IndexTarget.RawIndexTarget.Raw.simpleIndexOn(ColumnIdentifier c) static IndexTarget.RawIndexTarget.Raw.valuesOf(ColumnIdentifier c) Method parameters in org.apache.cassandra.cql3.statements.schema with type arguments of type ColumnIdentifierModifier and TypeMethodDescriptionvoidCreateTableStatement.Raw.setPartitionKeyColumns(List<ColumnIdentifier> columns) voidCreateViewStatement.Raw.setPartitionKeyColumns(List<ColumnIdentifier> columns) Constructors in org.apache.cassandra.cql3.statements.schema with parameters of type ColumnIdentifierConstructor parameters in org.apache.cassandra.cql3.statements.schema with type arguments of type ColumnIdentifierModifierConstructorDescriptionCreateFunctionStatement(String keyspaceName, String functionName, List<ColumnIdentifier> argumentNames, List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawReturnType, boolean calledOnNullInput, String language, String body, boolean orReplace, boolean ifNotExists) CreateTableStatement(String keyspaceName, String tableName, Map<ColumnIdentifier, org.apache.cassandra.cql3.statements.schema.CreateTableStatement.ColumnProperties.Raw> rawColumns, Set<ColumnIdentifier> staticColumns, List<ColumnIdentifier> partitionKeyColumns, List<ColumnIdentifier> clusteringColumns, LinkedHashMap<ColumnIdentifier, Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists, boolean useCompactStorage) CreateTableStatement(String keyspaceName, String tableName, Map<ColumnIdentifier, org.apache.cassandra.cql3.statements.schema.CreateTableStatement.ColumnProperties.Raw> rawColumns, Set<ColumnIdentifier> staticColumns, List<ColumnIdentifier> partitionKeyColumns, List<ColumnIdentifier> clusteringColumns, LinkedHashMap<ColumnIdentifier, Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists, boolean useCompactStorage) CreateTableStatement(String keyspaceName, String tableName, Map<ColumnIdentifier, org.apache.cassandra.cql3.statements.schema.CreateTableStatement.ColumnProperties.Raw> rawColumns, Set<ColumnIdentifier> staticColumns, List<ColumnIdentifier> partitionKeyColumns, List<ColumnIdentifier> clusteringColumns, LinkedHashMap<ColumnIdentifier, Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists, boolean useCompactStorage) CreateTableStatement(String keyspaceName, String tableName, Map<ColumnIdentifier, org.apache.cassandra.cql3.statements.schema.CreateTableStatement.ColumnProperties.Raw> rawColumns, Set<ColumnIdentifier> staticColumns, List<ColumnIdentifier> partitionKeyColumns, List<ColumnIdentifier> clusteringColumns, LinkedHashMap<ColumnIdentifier, Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists, boolean useCompactStorage) CreateViewStatement(String keyspaceName, String tableName, String viewName, List<RawSelector> rawColumns, List<ColumnIdentifier> partitionKeyColumns, List<ColumnIdentifier> clusteringColumns, WhereClause whereClause, LinkedHashMap<ColumnIdentifier, Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists) Raw(FunctionName name, List<ColumnIdentifier> argumentNames, List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawReturnType, boolean calledOnNullInput, String language, String body, boolean orReplace, boolean ifNotExists) -
Uses of ColumnIdentifier in org.apache.cassandra.db
Fields in org.apache.cassandra.db with type parameters of type ColumnIdentifierModifier and TypeFieldDescriptionprotected Set<ColumnIdentifier>AbstractReadCommandBuilder.columns -
Uses of ColumnIdentifier in org.apache.cassandra.db.filter
Methods in org.apache.cassandra.db.filter that return types with arguments of type ColumnIdentifierModifier and TypeMethodDescriptionprotected com.google.common.collect.SortedSetMultimap<ColumnIdentifier,ColumnSubselection> ColumnFilter.SelectionColumnFilter.subSelections()protected abstract com.google.common.collect.SortedSetMultimap<ColumnIdentifier,ColumnSubselection> ColumnFilter.subSelections()Returns the sub-selections ornullif there are none.protected com.google.common.collect.SortedSetMultimap<ColumnIdentifier,ColumnSubselection> ColumnFilter.WildCardColumnFilter.subSelections()Method parameters in org.apache.cassandra.db.filter with type arguments of type ColumnIdentifierModifier and TypeMethodDescriptionColumnFilter.SelectionColumnFilter.newInstance(org.apache.cassandra.db.filter.ColumnFilter.FetchingStrategy fetchingStrategy, TableMetadata metadata, RegularAndStaticColumns queried, com.google.common.collect.SortedSetMultimap<ColumnIdentifier, ColumnSubselection> subSelections) Constructor parameters in org.apache.cassandra.db.filter with type arguments of type ColumnIdentifierModifierConstructorDescriptionSelectionColumnFilter(org.apache.cassandra.db.filter.ColumnFilter.FetchingStrategy fetchingStrategy, RegularAndStaticColumns queried, RegularAndStaticColumns fetched, com.google.common.collect.SortedSetMultimap<ColumnIdentifier, ColumnSubselection> subSelections) Creates aColumnFilterfor queries with selected columns. -
Uses of ColumnIdentifier in org.apache.cassandra.schema
Methods in org.apache.cassandra.schema that return types with arguments of type ColumnIdentifierModifier and TypeMethodDescriptionstatic Collection<ColumnIdentifier>ColumnMetadata.toIdentifiers(Collection<ColumnMetadata> definitions) Converts the specified column definitions into column identifiers.Methods in org.apache.cassandra.schema with parameters of type ColumnIdentifierModifier and TypeMethodDescriptionTableMetadata.Builder.addClusteringColumn(ColumnIdentifier name, AbstractType<?> type) TableMetadata.Builder.addClusteringColumn(ColumnIdentifier name, AbstractType<?> type, ColumnMask mask) TableMetadata.Builder.addPartitionKeyColumn(ColumnIdentifier name, AbstractType<?> type) TableMetadata.Builder.addPartitionKeyColumn(ColumnIdentifier name, AbstractType<?> type, ColumnMask mask) TableMetadata.Builder.addRegularColumn(ColumnIdentifier name, AbstractType<?> type) TableMetadata.Builder.addRegularColumn(ColumnIdentifier name, AbstractType<?> type, ColumnMask mask) TableMetadata.Builder.addStaticColumn(ColumnIdentifier name, AbstractType<?> type) TableMetadata.Builder.addStaticColumn(ColumnIdentifier name, AbstractType<?> type, ColumnMask mask) TableMetadata.Builder.alterColumnMask(ColumnIdentifier name, ColumnMask mask) static StringIndexMetadata.generateDefaultIndexName(String table, ColumnIdentifier column) TableMetadata.Builder.getColumn(ColumnIdentifier identifier) TableMetadata.getColumn(ColumnIdentifier name) Returns the ColumnMetadata forname.TableMetadata.CompactTableMetadata.getExistingColumn(ColumnIdentifier name) TableMetadata.getExistingColumn(ColumnIdentifier name) Returns the column of the provided name if it exists, but throws a user-visible exception if that column doesn't exist.booleanViewMetadata.includes(ColumnIdentifier column) TableMetadata.Builder.removeRegularOrStaticColumn(ColumnIdentifier identifier) TableMetadata.Builder.renamePrimaryKeyColumn(ColumnIdentifier from, ColumnIdentifier to) ViewMetadata.withNewColumnMask(ColumnIdentifier name, ColumnMask mask) ColumnMetadata.withNewName(ColumnIdentifier newName) ViewMetadata.withRenamedPrimaryKeyColumn(ColumnIdentifier from, ColumnIdentifier to) Constructors in org.apache.cassandra.schema with parameters of type ColumnIdentifierModifierConstructorDescriptionColumnMetadata(String ksName, String cfName, ColumnIdentifier name, AbstractType<?> type, int position, ColumnMetadata.Kind kind, ColumnMask mask)