Uses of Class
mil.nga.geopackage.db.table.ConstraintType
-
Packages that use ConstraintType Package Description mil.nga.geopackage.db.table mil.nga.geopackage.user -
-
Uses of ConstraintType in mil.nga.geopackage.db.table
Fields in mil.nga.geopackage.db.table with type parameters of type ConstraintType Modifier and Type Field Description static Set<ConstraintType>ConstraintType. COLUMN_CONSTRAINTSColumn constraintsstatic Set<ConstraintType>ConstraintType. TABLE_CONSTRAINTSTable constraintsMethods in mil.nga.geopackage.db.table that return ConstraintType Modifier and Type Method Description static ConstraintTypeConstraintParser. getColumnType(String constraintSql)Get the column constraint type of the constraint SQLstatic ConstraintTypeConstraintType. getColumnType(String value)Get a matching column constraint type from the valuestatic ConstraintTypeConstraintParser. getTableType(String constraintSql)Get the table constraint type of the constraint SQLstatic ConstraintTypeConstraintType. getTableType(String value)Get a matching table constraint type from the valueConstraintTypeConstraint. getType()Get the constraint typestatic ConstraintTypeConstraintParser. getType(String constraintSql)Get the constraint type of the constraint SQLstatic ConstraintTypeConstraintType. getType(String value)Get a matching constraint type from the valuestatic ConstraintTypeConstraintType. valueOf(String name)Returns the enum constant of this type with the specified name.static ConstraintType[]ConstraintType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in mil.nga.geopackage.db.table with parameters of type ConstraintType Modifier and Type Method Description List<Constraint>Constraints. clear(ConstraintType type)Clear the constraints of the provided typeList<Constraint>Constraints. get(ConstraintType type)Get the constraints of the provided typebooleanConstraints. has(ConstraintType type)Check if has constraints of the provided typestatic booleanConstraintParser. isColumnType(ConstraintType type, String constraintSql)Determine if the column constraint SQL is the constraint typestatic booleanConstraintParser. isTableType(ConstraintType type, String constraintSql)Determine if the table constraint SQL is the constraint typestatic booleanConstraintParser. isType(ConstraintType type, String constraintSql)Determine if the constraint SQL is the constraint typevoidConstraint. setType(ConstraintType type)Set the constraint typeintConstraints. size(ConstraintType type)Get the number of constraints of the provided typeConstructors in mil.nga.geopackage.db.table with parameters of type ConstraintType Constructor Description Constraint(ConstraintType type)ConstructorConstraint(ConstraintType type, Integer order)ConstructorConstraint(ConstraintType type, String name)ConstructorConstraint(ConstraintType type, String name, Integer order)ConstructorRawConstraint(ConstraintType type, Integer order, String sql)ConstructorRawConstraint(ConstraintType type, String sql)ConstructorRawConstraint(ConstraintType type, String name, Integer order, String sql)ConstructorRawConstraint(ConstraintType type, String name, String sql)Constructor -
Uses of ConstraintType in mil.nga.geopackage.user
Methods in mil.nga.geopackage.user with parameters of type ConstraintType Modifier and Type Method Description voidUserColumn. addConstraint(ConstraintType type, Integer order, String constraint)Add a constraintvoidUserColumn. addConstraint(ConstraintType type, String constraint)Add a constraintList<Constraint>UserColumn. clearConstraints(ConstraintType type)Clear the constraints of the provided typeList<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 typebooleanUserColumn. hasConstraints(ConstraintType type)Check if has constraints of the provided typebooleanUserTable. hasConstraints(ConstraintType type)Check if has constraints of the provided type
-