Uses of Class
mil.nga.geopackage.user.ContentValues
-
Packages that use ContentValues Package Description mil.nga.geopackage.db mil.nga.geopackage.features.user mil.nga.geopackage.user -
-
Uses of ContentValues in mil.nga.geopackage.db
Methods in mil.nga.geopackage.db with parameters of type ContentValues Modifier and Type Method Description static long
SQLUtils. insert(Connection connection, String table, String pkColumn, ContentValues values)
Insert a new rowstatic long
SQLUtils. insert(Connection connection, String table, ContentValues values)
Insert a new rowstatic long
SQLUtils. insertOrThrow(Connection connection, String table, String pkColumn, ContentValues values)
Insert a new rowstatic long
SQLUtils. insertOrThrow(Connection connection, String table, ContentValues values)
Insert a new rowstatic int
SQLUtils. update(Connection connection, String table, ContentValues values, String whereClause, String[] whereArgs)
Update table rows -
Uses of ContentValues in mil.nga.geopackage.features.user
Methods in mil.nga.geopackage.features.user with parameters of type ContentValues Modifier and Type Method Description protected void
FeatureRow. columnToContentValue(ContentValues contentValues, FeatureColumn column, Object value)
Map the column to the content values -
Uses of ContentValues in mil.nga.geopackage.user
Methods in mil.nga.geopackage.user that return ContentValues Modifier and Type Method Description ContentValues
UserRow. toContentValues()
Convert the row to content valuesContentValues
UserRow. toContentValues(boolean includeNulls)
Convert the row to content valuesMethods in mil.nga.geopackage.user with parameters of type ContentValues Modifier and Type Method Description protected void
UserRow. columnToContentValue(ContentValues contentValues, TColumn column, Object value)
Map the column to the content valueslong
UserDao. insert(ContentValues values)
Inserts a new rowlong
UserDao. insertOrThrow(ContentValues values)
Inserts a new rowint
UserDao. update(ContentValues values, String whereClause, String[] whereArgs)
Update all rows matching the where clause with the provided values
-