Tabnine Logo
OhmDBImpl.table
Code IndexAdd Tabnine to your IDE (free)

How to use
table
method
in
com.ohmdb.impl.OhmDBImpl

Best Java code snippets using com.ohmdb.impl.OhmDBImpl.table (Showing top 9 results out of 315)

origin: com.gitblit.ohmdb/ohmdb

@SuppressWarnings("unchecked")
@Override
public synchronized <T> Table<T> table(String fullClassname) {
  try {
    Class<T> clazz = (Class<T>) Class.forName(fullClassname);
    return table(clazz);
  } catch (ClassNotFoundException e) {
    throw Errors.rte(e);
  }
}
origin: ohmdb/ohmdb

@SuppressWarnings("unchecked")
@Override
public synchronized <T> Table<T> table(String fullClassname) {
  try {
    Class<T> clazz = (Class<T>) Class.forName(fullClassname);
    return table(clazz);
  } catch (ClassNotFoundException e) {
    throw Errors.rte(e);
  }
}
origin: com.gitblit.ohmdb/ohmdb-core

@SuppressWarnings("unchecked")
@Override
public synchronized <T> Table<T> table(String fullClassname) {
  try {
    Class<T> clazz = (Class<T>) Class.forName(fullClassname);
    return table(clazz);
  } catch (ClassNotFoundException e) {
    throw Errors.rte(e);
  }
}
origin: com.gitblit.ohmdb/ohmdb-core

@SuppressWarnings("unchecked")
@Override
public long insert(Object entity) {
  Table<Object> tbl = (Table<Object>) table(entity.getClass());
  return tbl.insert(entity);
}
origin: com.gitblit.ohmdb/ohmdb

@SuppressWarnings("unchecked")
@Override
public long insert(Object entity) {
  Table<Object> tbl = (Table<Object>) table(entity.getClass());
  return tbl.insert(entity);
}
origin: ohmdb/ohmdb

@SuppressWarnings("unchecked")
@Override
public long insert(Object entity) {
  Table<Object> tbl = (Table<Object>) table(entity.getClass());
  return tbl.insert(entity);
}
origin: com.gitblit.ohmdb/ohmdb

private void importColumns(long id) {
  String fullName = (String) decode();
  int colN = (Integer) decode();
  Table<Object> table = table(fullName);
  TableInternals<?> table2 = (TableInternals<?>) table;
  for (int i = 0; i < colN; i++) {
    String colName = (String) decode();
    Object colVal = decode();
    table2.fill(id, colName, colVal);
  }
}
origin: com.gitblit.ohmdb/ohmdb-core

private void importColumns(long id) {
  String fullName = (String) decode();
  int colN = (Integer) decode();
  Table<Object> table = table(fullName);
  TableInternals<?> table2 = (TableInternals<?>) table;
  for (int i = 0; i < colN; i++) {
    String colName = (String) decode();
    Object colVal = decode();
    table2.fill(id, colName, colVal);
  }
}
origin: ohmdb/ohmdb

private void importColumns(long id) {
  String fullName = (String) decode();
  int colN = (Integer) decode();
  Table<Object> table = table(fullName);
  TableInternals<?> table2 = (TableInternals<?>) table;
  for (int i = 0; i < colN; i++) {
    String colName = (String) decode();
    Object colVal = decode();
    table2.fill(id, colName, colVal);
  }
}
com.ohmdb.implOhmDBImpltable

Popular methods of OhmDBImpl

  • relation
  • <init>
  • addShutdownHook
  • address
  • commit
  • decode
  • deleteRelsInTx
  • exportColumns
  • exportRecord
  • exportRelations
  • failure
  • importColumns
  • failure,
  • importColumns,
  • importRelations,
  • registerTriggers,
  • rollback,
  • getLinkMatcher

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (Timer)
  • setContentView (Activity)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top Sublime Text plugins
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