Tabnine Logo
AttributesTable.getTableName
Code IndexAdd Tabnine to your IDE (free)

How to use
getTableName
method
in
mil.nga.geopackage.attributes.AttributesTable

Best Java code snippets using mil.nga.geopackage.attributes.AttributesTable.getTableName (Showing top 7 results out of 315)

origin: ngageoint/geopackage-android

/**
 * Constructor
 *
 * @param database     database
 * @param db           db connection
 * @param attributesDb attributes connection
 * @param table        attributes table
 */
public AttributesDao(String database, GeoPackageConnection db,
           AttributesConnection attributesDb, AttributesTable table) {
  super(database, db, attributesDb, table);
  this.attributesDb = attributesDb;
  if (table.getContents() == null) {
    throw new GeoPackageException(AttributesTable.class.getSimpleName()
        + " " + table.getTableName() + " has null "
        + Contents.class.getSimpleName());
  }
}
origin: ngageoint/geopackage-java

/**
 * Constructor
 * 
 * @param database
 *            database
 * @param db
 *            db connection
 * @param attributesDb
 *            attributes connection
 * @param table
 *            attributes table
 */
public AttributesDao(String database, GeoPackageConnection db,
    AttributesConnection attributesDb, AttributesTable table) {
  super(database, db, attributesDb, table);
  this.attributesDb = attributesDb;
  if (table.getContents() == null) {
    throw new GeoPackageException(AttributesTable.class.getSimpleName()
        + " " + table.getTableName() + " has null "
        + Contents.class.getSimpleName());
  }
}
origin: ngageoint/geopackage-android

registerCursorWrapper(attributesTable.getTableName(),
    new GeoPackageCursorWrapper() {
origin: ngageoint/geopackage-android

.getAttributesDao(attributesTable.getTableName());
origin: ngageoint/geopackage-android

    attributesContents.getTableName());
TestCase.assertEquals(attributesContents.getTableName(),
    attributesTable.getTableName());
    .getAttributesDao(attributesTable.getTableName());
  attributesReference.setTableName(attributesTable.getTableName());
  attributesReference.setRowIdValue(rowId);
  attributesReference.setTimestamp(new Date());
origin: ngageoint/geopackage-android

TestCase.assertEquals(ContentsDataType.ATTRIBUTES.getName(),
    attributesContents.getDataTypeString());
TestCase.assertEquals(attributesTable.getTableName(),
    attributesContents.getTableName());
TestCase.assertNotNull(attributesContents.getLastChange());
origin: ngageoint/geopackage-android

List<MetadataReference> references = referenceDao.queryForEq(
    MetadataReference.COLUMN_TABLE_NAME,
    attributesTable.getTableName());
if (references != null && !references.isEmpty()) {
  Metadata metadata = references.get(0).getMetadata();
    TestCase.assertNotNull(queryRow);
    TestCase.assertNotNull(queryRow.getTable());
    TestCase.assertEquals(attributesTable.getTableName(),
        queryRow.getTable().getTableName());
mil.nga.geopackage.attributesAttributesTablegetTableName

Popular methods of AttributesTable

  • <init>
    Constructor
  • getContents
    Get the contents
  • setContents
    Set the contents
  • addUniqueConstraints
  • getColumnNames
  • getColumns
  • getPkColumn

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • BoxLayout (javax.swing)
  • JButton (javax.swing)
  • Option (scala)
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now