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

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

Best Java code snippets using org.datacleaner.reference.DatastoreSynonymCatalog.getDatastoreName (Showing top 4 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

if (synonymCatalog instanceof DatastoreSynonymCatalog) {
  datastores.add(configuration.getDatastoreCatalog()
      .getDatastore(((DatastoreSynonymCatalog) synonymCatalog).getDatastoreName()));
origin: datacleaner/DataCleaner

private static String getDescription(final SynonymCatalog synonymCatalog) {
  if (synonymCatalog.getDescription() != null) {
    return synonymCatalog.getDescription();
  }
  if (synonymCatalog instanceof TextFileSynonymCatalog) {
    return ((TextFileSynonymCatalog) synonymCatalog).getFilename();
  } else if (synonymCatalog instanceof DatastoreSynonymCatalog) {
    final DatastoreSynonymCatalog datastoreSynonymCatalog = (DatastoreSynonymCatalog) synonymCatalog;
    return datastoreSynonymCatalog.getDatastoreName() + ": " + datastoreSynonymCatalog
        .getMasterTermColumnPath();
  }
  return "";
}
origin: datacleaner/DataCleaner

private Element toElement(final DatastoreSynonymCatalog sc) {
  final Element elem = getDocument().createElement("datastore-synonym-catalog");
  elem.setAttribute("name", sc.getName());
  if (!Strings.isNullOrEmpty(sc.getDescription())) {
    elem.setAttribute("description", sc.getDescription());
  }
  appendElement(elem, "datastore-name", sc.getDatastoreName());
  appendElement(elem, "master-term-column-path", sc.getMasterTermColumnPath());
  final String[] synonymColumnPaths = sc.getSynonymColumnPaths();
  for (final String path : synonymColumnPaths) {
    appendElement(elem, "synonym-column-path", path);
  }
  appendElement(elem, "load-into-memory", sc.isLoadIntoMemory());
  return elem;
}
origin: datacleaner/DataCleaner

final String datastoreName = synonymCatalog.getDatastoreName();
org.datacleaner.referenceDatastoreSynonymCataloggetDatastoreName

Popular methods of DatastoreSynonymCatalog

  • getName
  • <init>
  • getMasterTermColumnPath
  • getSynonymColumnPaths
  • getDescription
  • getMasterTerm
  • getMasterTermColumn
  • getSynonymColumns
  • getSynonyms
  • isLoadIntoMemory
  • loadIntoMemory
  • setDescription
  • loadIntoMemory,
  • 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