Uses of Class
mil.nga.geopackage.db.table.Constraint
-
Packages that use Constraint Package Description mil.nga.geopackage.db.table mil.nga.geopackage.user -
-
Uses of Constraint in mil.nga.geopackage.db.table
Subclasses of Constraint in mil.nga.geopackage.db.table Modifier and Type Class Description classRawConstraintTable raw or unparsed constraintclassUniqueConstraintTable unique constraint for one or more columnsMethods in mil.nga.geopackage.db.table that return Constraint Modifier and Type Method Description abstract ConstraintConstraint. copy()Copy the constraintConstraintRawConstraint. copy()Copy the constraintConstraintConstraints. get(int index)Get the constraint at the indexstatic ConstraintConstraintParser. getColumnConstraint(String constraintSql)Attempt to get a column constraint by parsing the SQL statementConstraintTableConstraints. getColumnConstraint(String columnName, int index)Get the column constraint at the indexConstraintColumnConstraints. getConstraint(int index)Get the constraint at the indexstatic ConstraintConstraintParser. getConstraint(String constraintSql)Attempt to get a constraint by parsing the SQL statementstatic ConstraintConstraintParser. getTableConstraint(String constraintSql)Attempt to get a table constraint by parsing the SQL statementConstraintTableConstraints. getTableConstraint(int index)Get the table constraint at the indexMethods in mil.nga.geopackage.db.table that return types with arguments of type Constraint Modifier and Type Method Description List<Constraint>Constraints. all()Get the constraintsList<Constraint>Constraints. clear()Clear the constraintsList<Constraint>Constraints. clear(ConstraintType type)Clear the constraints of the provided typeList<Constraint>Constraints. get(ConstraintType type)Get the constraints of the provided typeMethods in mil.nga.geopackage.db.table with parameters of type Constraint Modifier and Type Method Description voidConstraints. add(Constraint constraint)Add constraintvoidTableConstraints. addColumnConstraint(String columnName, Constraint constraint)Add a column constraintvoidColumnConstraints. addConstraint(Constraint constraint)Add a constraintvoidTableConstraints. addTableConstraint(Constraint constraint)Add a table constraintintConstraint. compareTo(Constraint constraint)Method parameters in mil.nga.geopackage.db.table with type arguments of type Constraint Modifier and Type Method Description voidConstraints. add(Collection<Constraint> constraints)Add constraintsvoidTableConstraints. addColumnConstraints(String columnName, Collection<Constraint> constraints)Add column constraintsvoidColumnConstraints. addConstraints(Collection<Constraint> constraints)Add constraints -
Uses of Constraint in mil.nga.geopackage.user
Methods in mil.nga.geopackage.user that return types with arguments of type Constraint Modifier and Type Method Description List<Constraint>UserColumn. clearConstraints()Clear the constraintsList<Constraint>UserColumn. clearConstraints(boolean reset)Clear the constraintsList<Constraint>UserColumn. clearConstraints(ConstraintType type)Clear the constraints of the provided typeList<Constraint>UserTable. clearConstraints()Clear the constraintsList<Constraint>UserTable. clearConstraints(ConstraintType type)Clear the constraints of the provided typeList<Constraint>UserColumn. getConstraints(ConstraintType type)Get the constraints of the provided typeList<Constraint>UserTable. getConstraints(ConstraintType type)Get the constraints of the provided typeMethods in mil.nga.geopackage.user with parameters of type Constraint Modifier and Type Method Description voidUserColumn. addConstraint(Constraint constraint)Add a constraintvoidUserTable. addConstraint(Constraint constraint)Add constraintStringUserColumn. buildConstraintSql(Constraint constraint)Build the SQL for the constraintvoidUserColumn. setConstraintOrder(Constraint constraint)Set the constraint order by constraint typeMethod parameters in mil.nga.geopackage.user with type arguments of type Constraint Modifier and Type Method Description voidUserColumn. addConstraints(Collection<Constraint> constraints)Add constraintsvoidUserTable. addConstraints(Collection<Constraint> constraints)Add constraints
-