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.columnsfinal List<SortedColumn>PrimaryKeyTableConstraint.columnsfinal List<SortedColumn>UniqueTableConstraint.columnsfinal List<SortedColumn>Delete.orderByfinal List<SortedColumn>Select.orderByfinal List<SortedColumn>Update.orderByWindow.orderByfinal List<SortedColumn>Upsert.targetsConstructor 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)