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

  • Making http post requests using okhttp
  • runOnUiThread (Activity)
  • getApplicationContext (Context)
  • onCreateOptionsMenu (Activity)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Best plugins for Eclipse
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