Uses of Class
org.apache.cassandra.schema.ViewMetadata
-
Packages that use ViewMetadata Package Description org.apache.cassandra.db.view org.apache.cassandra.schema -
-
Uses of ViewMetadata in org.apache.cassandra.db.view
Methods in org.apache.cassandra.db.view that return ViewMetadata Modifier and Type Method Description ViewMetadata
View. getDefinition()
Methods in org.apache.cassandra.db.view that return types with arguments of type ViewMetadata Modifier and Type Method Description static java.lang.Iterable<ViewMetadata>
View. findAll(java.lang.String keyspace, java.lang.String baseTable)
Methods in org.apache.cassandra.db.view with parameters of type ViewMetadata Modifier and Type Method Description void
ViewManager. addView(ViewMetadata definition)
void
View. updateDefinition(ViewMetadata definition)
This updates the columns stored which are dependent on the base TableMetadata.Constructors in org.apache.cassandra.db.view with parameters of type ViewMetadata Constructor Description View(ViewMetadata definition, ColumnFamilyStore baseCfs)
-
Uses of ViewMetadata in org.apache.cassandra.schema
Methods in org.apache.cassandra.schema that return ViewMetadata Modifier and Type Method Description ViewMetadata
ViewMetadata. copy(TableMetadata newMetadata)
ViewMetadata
Views.Builder. get(java.lang.String name)
ViewMetadata
Views. getNullable(java.lang.String name)
Get the view with the specified nameViewMetadata
Schema. getView(java.lang.String keyspaceName, java.lang.String viewName)
ViewMetadata
ViewMetadata. withAddedRegularColumn(ColumnMetadata column)
ViewMetadata
ViewMetadata. withRenamedPrimaryKeyColumn(ColumnIdentifier from, ColumnIdentifier to)
ViewMetadata
ViewMetadata. withUpdatedUserType(UserType udt)
Methods in org.apache.cassandra.schema that return types with arguments of type ViewMetadata Modifier and Type Method Description java.lang.Iterable<ViewMetadata>
Views. forTable(TableId tableId)
java.util.Optional<ViewMetadata>
Views. get(java.lang.String name)
Get the materialized view with the specified namejava.util.Iterator<ViewMetadata>
Views. iterator()
java.util.stream.Stream<ViewMetadata>
Views. stream()
java.util.stream.Stream<ViewMetadata>
Views. stream(TableId tableId)
Methods in org.apache.cassandra.schema with parameters of type ViewMetadata Modifier and Type Method Description Views.Builder
Views.Builder. put(ViewMetadata view)
Views
Views. with(ViewMetadata view)
Create a MaterializedViews instance with the provided materialized view addedViews
Views. withSwapped(ViewMetadata view)
Method parameters in org.apache.cassandra.schema with type arguments of type ViewMetadata Modifier and Type Method Description Views.Builder
Views.Builder. put(java.lang.Iterable<ViewMetadata> views)
-