Codota Logo
DatastoreSynonymCatalog.loadIntoMemory
Code IndexAdd Codota to your IDE (free)

How to use
loadIntoMemory
method
in
org.datacleaner.reference.DatastoreSynonymCatalog

Best Java code snippets using org.datacleaner.reference.DatastoreSynonymCatalog.loadIntoMemory (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: datacleaner/DataCleaner

@Override
public Replacement replaceInline(final String sentence) {
  final SimpleSynonymCatalog simpleSynonymCatalog = _synonymCatalog.loadIntoMemory(_datastoreConnection);
  return simpleSynonymCatalog.openConnection(null).replaceInline(sentence);
}
origin: datacleaner/DataCleaner

@Override
public Collection<Synonym> getSynonyms() {
  final SimpleSynonymCatalog simpleSynonymCatalog = _synonymCatalog.loadIntoMemory(_datastoreConnection);
  return simpleSynonymCatalog.openConnection(null).getSynonyms();
}
origin: datacleaner/DataCleaner

@Override
public SynonymCatalogConnection openConnection(final DataCleanerConfiguration configuration) {
  final Datastore datastore = configuration.getDatastoreCatalog().getDatastore(_datastoreName);
  if (datastore == null) {
    throw new NoSuchDatastoreException(_datastoreName);
  }
  final DatastoreConnection datastoreConnection = datastore.openConnection();
  if (_loadIntoMemory) {
    final SimpleSynonymCatalog simpleSynonymCatalog = loadIntoMemory(datastoreConnection);
    // no need for the connection anymore
    datastoreConnection.close();
    return simpleSynonymCatalog.openConnection(configuration);
  }
  return new DatastoreSynonymCatalogConnection(this, datastoreConnection);
}
org.datacleaner.referenceDatastoreSynonymCatalogloadIntoMemory

Popular methods of DatastoreSynonymCatalog

  • getDatastoreName
  • getName
  • <init>
  • getMasterTermColumnPath
  • getSynonymColumnPaths
  • getDescription
  • getMasterTerm
  • getMasterTermColumn
  • getSynonymColumns
  • getSynonyms
  • isLoadIntoMemory
  • setDescription
  • isLoadIntoMemory,
  • setDescription

Popular in Java

  • Making http requests using okhttp
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • addToBackStack (FragmentTransaction)
  • getSystemService (Context)
  • ObjectMapper (com.fasterxml.jackson.databind)
    This mapper (or, data binder, or codec) provides functionality for converting between Java objects (
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Notification (javax.management)
  • JList (javax.swing)
  • Runner (org.openjdk.jmh.runner)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now