congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
ResourceDictionaries.getLogicalDictionary
Code IndexAdd Tabnine to your IDE (free)

How to use
getLogicalDictionary
method
in
com.yahoo.bard.webservice.data.config.ResourceDictionaries

Best Java code snippets using com.yahoo.bard.webservice.data.config.ResourceDictionaries.getLogicalDictionary (Showing top 7 results out of 315)

origin: yahoo/fili

public LogicalTableDictionary getLogicalTableDictionary() {
  return dictionaries.getLogicalDictionary();
}
origin: yahoo/fili

  public LogicalTableDictionary getLogicalTableDictionary() {
    return resourceDictionaries.getLogicalDictionary();
  }
}
origin: yahoo/fili

  /**
   * The dictionary of logical tables.
   *
   * @return A logical table dictionary
   */
  default LogicalTableDictionary getLogicalTableDictionary() {
    return getResourceDictionaries().getLogicalDictionary();
  }
}
origin: yahoo/fili

/**
 * Load several logical tables into the logicalDictionary, all with the globally-scoped metric dictionary.
 * <p>
 * Note: This builds the logical tables as well.
 *
 * @param nameGroupMap  A map of logical table name to table group information
 * @param validGrains  The accepted grains for the logical table
 * @param dictionaries  The resource dictionaries for reading and storing configuration
 */
public void loadLogicalTablesWithGranularities(
    Map<String, TableGroup> nameGroupMap,
    Set<? extends Granularity> validGrains,
    ResourceDictionaries dictionaries
) {
  loadLogicalTablesWithGranularities(
      nameGroupMap,
      validGrains,
      dictionaries.getLogicalDictionary(),
      nameGroupMap.keySet().stream()
          .collect(Collectors.toMap(Function.identity(), i -> dictionaries.getMetricDictionary()))
  );
}
origin: yahoo/fili

/**
 * Load a logical table into the logicalDictionary.
 * <p>
 * Note: This builds the logical table as well.
 *
 * @param logicalTableName  The logical table name
 * @param nameGroup  The table group information for the logical table
 * @param validGrains  The accepted grains for the logical table
 * @param dictionaries  The resource dictionaries for reading and storing configuration
 */
public void loadLogicalTableWithGranularities(
    String logicalTableName,
    TableGroup nameGroup,
    Set<? extends Granularity> validGrains,
    ResourceDictionaries dictionaries
) {
  loadLogicalTableWithGranularities(
      logicalTableName,
      nameGroup,
      validGrains,
      dictionaries.getLogicalDictionary(),
      dictionaries.getMetricDictionary()
  );
}
origin: com.yahoo.fili/fili-core

LogicalTableDictionary tableDictionary = dictionaries.getLogicalDictionary();
loadLogicalTablesWithGranularities(
    logicalTableTableGroup,
origin: yahoo/fili

LogicalTableDictionary tableDictionary = dictionaries.getLogicalDictionary();
loadLogicalTablesWithGranularities(
    logicalTableTableGroup,
com.yahoo.bard.webservice.data.configResourceDictionariesgetLogicalDictionary

Popular methods of ResourceDictionaries

  • getDimensionDictionary
  • getMetricDictionary
  • getPhysicalDictionary
  • toString

Popular in Java

  • Creating JSON documents from java classes using gson
  • putExtra (Intent)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Collectors (java.util.stream)
  • Top 17 PhpStorm Plugins
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