congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
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
  • addToBackStack (FragmentTransaction)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • String (java.lang)
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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