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 class
RawConstraint
Table raw or unparsed constraintclass
UniqueConstraint
Table unique constraint for one or more columnsMethods in mil.nga.geopackage.db.table that return Constraint Modifier and Type Method Description abstract Constraint
Constraint. copy()
Copy the constraintConstraint
RawConstraint. copy()
Copy the constraintConstraint
Constraints. get(int index)
Get the constraint at the indexstatic Constraint
ConstraintParser. getColumnConstraint(String constraintSql)
Attempt to get a column constraint by parsing the SQL statementConstraint
TableConstraints. getColumnConstraint(String columnName, int index)
Get the column constraint at the indexConstraint
ColumnConstraints. getConstraint(int index)
Get the constraint at the indexstatic Constraint
ConstraintParser. getConstraint(String constraintSql)
Attempt to get a constraint by parsing the SQL statementstatic Constraint
ConstraintParser. getTableConstraint(String constraintSql)
Attempt to get a table constraint by parsing the SQL statementConstraint
TableConstraints. 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 void
Constraints. add(Constraint constraint)
Add constraintvoid
TableConstraints. addColumnConstraint(String columnName, Constraint constraint)
Add a column constraintvoid
ColumnConstraints. addConstraint(Constraint constraint)
Add a constraintvoid
TableConstraints. addTableConstraint(Constraint constraint)
Add a table constraintint
Constraint. compareTo(Constraint constraint)
Method parameters in mil.nga.geopackage.db.table with type arguments of type Constraint Modifier and Type Method Description void
Constraints. add(Collection<Constraint> constraints)
Add constraintsvoid
TableConstraints. addColumnConstraints(String columnName, Collection<Constraint> constraints)
Add column constraintsvoid
ColumnConstraints. 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 void
UserColumn. addConstraint(Constraint constraint)
Add a constraintvoid
UserTable. addConstraint(Constraint constraint)
Add constraintString
UserColumn. buildConstraintSql(Constraint constraint)
Build the SQL for the constraintvoid
UserColumn. 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 void
UserColumn. addConstraints(Collection<Constraint> constraints)
Add constraintsvoid
UserTable. addConstraints(Collection<Constraint> constraints)
Add constraints
-