Uses of Class
org.sqlite.parser.ast.SortedColumn
Packages that use SortedColumn
-
Uses of SortedColumn in org.sqlite.parser.ast
Fields in org.sqlite.parser.ast with type parameters of type SortedColumnModifier and TypeFieldDescriptionfinal List<SortedColumn>
CreateIndex.columns
final List<SortedColumn>
PrimaryKeyTableConstraint.columns
final List<SortedColumn>
UniqueTableConstraint.columns
final List<SortedColumn>
Delete.orderBy
final List<SortedColumn>
Select.orderBy
final List<SortedColumn>
Update.orderBy
Window.orderBy
final List<SortedColumn>
Upsert.targets
Constructor parameters in org.sqlite.parser.ast with type arguments of type SortedColumnModifierConstructorDescriptionCreateIndex
(boolean unique, boolean ifNotExists, QualifiedName idxName, String tblName, List<SortedColumn> columns, Expr whereClause) Delete
(With with, QualifiedName tblName, Indexed indexed, Expr whereClause, List<SortedColumn> orderBy, Limit limit) PrimaryKeyTableConstraint
(String name, List<SortedColumn> columns, boolean autoIncrement, ResolveType conflictClause) Select
(With with, SelectBody body, List<SortedColumn> orderBy, Limit limit) UniqueTableConstraint
(String name, List<SortedColumn> columns, ResolveType conflictClause)