Uses of Enum Class
org.sqlite.parser.ast.SortOrder
Packages that use SortOrder
-
Uses of SortOrder in org.sqlite.parser.ast
Fields in org.sqlite.parser.ast declared as SortOrderModifier and TypeFieldDescriptionfinal SortOrder
IndexedColumn.order
final SortOrder
PrimaryKeyColumnConstraint.order
final SortOrder
SortedColumn.order
Methods in org.sqlite.parser.ast that return SortOrderModifier and TypeMethodDescriptionstatic SortOrder
Returns the enum constant of this class with the specified name.static SortOrder[]
SortOrder.values()
Returns an array containing the constants of this enum class, in the order they are declared.Method parameters in org.sqlite.parser.ast with type arguments of type SortOrderModifier and TypeMethodDescriptionboolean
PrimaryKeyConstraint.allMatch
(BiFunction<String, SortOrder, Boolean> columnChecker) boolean
PrimaryKeyTableConstraint.allMatch
(BiFunction<String, SortOrder, Boolean> columnChecker) Constructors in org.sqlite.parser.ast with parameters of type SortOrderModifierConstructorDescriptionIndexedColumn
(String colName, String collationName, SortOrder order) PrimaryKeyColumnConstraint
(String name, SortOrder order, ResolveType conflictClause, boolean autoIncrement) SortedColumn
(Expr name, SortOrder order)