Uses of Interface
org.apache.cassandra.cql3.selection.Selectable
-
Packages that use Selectable Package Description org.apache.cassandra.cql3.selection org.apache.cassandra.schema -
-
Uses of Selectable in org.apache.cassandra.cql3.selection
Classes in org.apache.cassandra.cql3.selection that implement Selectable Modifier and Type Class Description static class
Selectable.BetweenParenthesesOrWithTuple
Selectable
forSelectable
between parentheses or tuples.static class
Selectable.WithCast
static class
Selectable.WithElementSelection
Represents the selection of an element of a collection (eg.static class
Selectable.WithFieldSelection
Represents the selection of the field of a UDT (eg.static class
Selectable.WithFunction
static class
Selectable.WithList
Selectable
for literal Lists.static class
Selectable.WithMapOrUdt
Selectable
for literal Maps or UDTs.static class
Selectable.WithSet
Selectable
for literal Sets.static class
Selectable.WithSliceSelection
Represents the selection of a slice of a collection (eg.static class
Selectable.WithTerm
static class
Selectable.WithToJSonFunction
static class
Selectable.WithTypeHint
Selectable
for type hints (e.g.static class
Selectable.WritetimeOrTTL
Fields in org.apache.cassandra.cql3.selection declared as Selectable Modifier and Type Field Description Selectable
Selectable.WithElementSelection. selected
Selectable
Selectable.WithFieldSelection. selected
Selectable
Selectable.WithSliceSelection. selected
Fields in org.apache.cassandra.cql3.selection with type parameters of type Selectable Modifier and Type Field Description java.util.List<Selectable>
Selectable.WithFunction. args
java.util.List<Selectable>
Selectable.WithToJSonFunction. args
Methods in org.apache.cassandra.cql3.selection that return Selectable Modifier and Type Method Description Selectable
Selectable.BetweenParenthesesOrWithTuple.Raw. prepare(TableMetadata cfm)
Selectable
Selectable.Raw. prepare(TableMetadata table)
Selectable
Selectable.WithFunction.Raw. prepare(TableMetadata table)
Selectable
Selectable.WithList.Raw. prepare(TableMetadata cfm)
Selectable
Selectable.WithMapOrUdt.Raw. prepare(TableMetadata cfm)
Selectable
Selectable.WithSet.Raw. prepare(TableMetadata cfm)
Selectable
Selectable.WithTerm.Raw. prepare(TableMetadata table)
Selectable
Selectable.WithTypeHint.Raw. prepare(TableMetadata cfm)
Methods in org.apache.cassandra.cql3.selection that return types with arguments of type Selectable Modifier and Type Method Description static java.util.List<Selectable>
RawSelector. toSelectables(java.util.List<RawSelector> raws, TableMetadata table)
Converts the specified list ofRawSelector
s into a list ofSelectable
s.Methods in org.apache.cassandra.cql3.selection with parameters of type Selectable Modifier and Type Method Description default ColumnSpecification
Selectable. specForElementOrSlice(Selectable selected, ColumnSpecification receiver, java.lang.String selectionType)
Method parameters in org.apache.cassandra.cql3.selection with type arguments of type Selectable Modifier and Type Method Description static Selection
Selection. fromSelectors(TableMetadata table, java.util.List<Selectable> selectables, VariableSpecifications boundNames, java.util.Set<ColumnMetadata> orderingColumns, java.util.Set<ColumnMetadata> nonPKRestrictedColumns, boolean hasGroupBy, boolean isJson, boolean returnStaticContentOnPartitionWithNoRows)
static boolean
Selectable. selectColumns(java.util.List<Selectable> selectables, java.util.function.Predicate<ColumnMetadata> predicate)
Checks if the specified Selectables select columns matching the specified predicate.Constructors in org.apache.cassandra.cql3.selection with parameters of type Selectable Constructor Description WithCast(Selectable arg, CQL3Type type)
WithFieldSelection(Selectable selected, FieldIdentifier field)
WithTypeHint(java.lang.String typeName, AbstractType<?> type, Selectable selectable)
Constructor parameters in org.apache.cassandra.cql3.selection with type arguments of type Selectable Constructor Description BetweenParenthesesOrWithTuple(java.util.List<Selectable> selectables)
WithFunction(Function function, java.util.List<Selectable> args)
WithList(java.util.List<Selectable> selectables)
WithSet(java.util.List<Selectable> selectables)
-
Uses of Selectable in org.apache.cassandra.schema
Classes in org.apache.cassandra.schema that implement Selectable Modifier and Type Class Description class
ColumnMetadata
-