Uses of Enum Class
org.sqlite.parser.ast.ResolveType
Packages that use ResolveType
-
Uses of ResolveType in org.sqlite.parser.ast
Fields in org.sqlite.parser.ast declared as ResolveTypeModifier and TypeFieldDescriptionfinal ResolveTypeNotNullColumnConstraint.conflictClausefinal ResolveTypePrimaryKeyColumnConstraint.conflictClausefinal ResolveTypePrimaryKeyTableConstraint.conflictClausefinal ResolveTypeUniqueColumnConstraint.conflictClausefinal ResolveTypeUniqueTableConstraint.conflictClausefinal ResolveTypeInsert.orConflictfinal ResolveTypeInsertTriggerCmd.orConflictfinal ResolveTypeUpdate.orConflictfinal ResolveTypeUpdateTriggerCmd.orConflictfinal ResolveTypeRaiseExpr.typeMethods in org.sqlite.parser.ast that return ResolveTypeModifier and TypeMethodDescriptionPrimaryKeyConstraint.getConflictClause()PrimaryKeyTableConstraint.getConflictClause()static ResolveTypeReturns the enum constant of this class with the specified name.static ResolveType[]ResolveType.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.sqlite.parser.ast with parameters of type ResolveTypeModifierConstructorDescriptionInsert(With with, ResolveType orConflict, QualifiedName tblName, List<String> columns, Select select, Upsert upsert) InsertTriggerCmd(ResolveType orConflict, String tblName, List<String> columns, Select select, Upsert upsert) NotNullColumnConstraint(String name, boolean nullable, ResolveType conflictClause) PrimaryKeyColumnConstraint(String name, SortOrder order, ResolveType conflictClause, boolean autoIncrement) PrimaryKeyTableConstraint(String name, List<SortedColumn> columns, boolean autoIncrement, ResolveType conflictClause) RaiseExpr(ResolveType type, String err) UniqueColumnConstraint(String name, ResolveType conflictClause) UniqueTableConstraint(String name, List<SortedColumn> columns, ResolveType conflictClause) Update(With with, ResolveType orConflict, QualifiedName tblName, Indexed indexed, List<Set> sets, Expr whereClause, List<SortedColumn> orderBy, Limit limit) UpdateTriggerCmd(ResolveType orConflict, String tblName, List<Set> sets, Expr whereClause)