Tabnine Logo
FilterDefinition.getParameterTypes
Code IndexAdd Tabnine to your IDE (free)

How to use
getParameterTypes
method
in
org.hibernate.engine.spi.FilterDefinition

Best Java code snippets using org.hibernate.engine.spi.FilterDefinition.getParameterTypes (Showing top 3 results out of 315)

origin: hibernate/hibernate-orm

  /**
   * Constructs a number of FilterKey instances, given the currently enabled filters
   *
   * @param enabledFilters The currently enabled filters
   *
   * @return The filter keys, one per enabled filter
   */
  public static Set<FilterKey> createFilterKeys(Map<String,Filter> enabledFilters) {
    if ( enabledFilters.size() == 0 ) {
      return null;
    }
    final Set<FilterKey> result = new HashSet<FilterKey>();
    for ( Filter filter : enabledFilters.values() ) {
      final FilterKey key = new FilterKey(
          filter.getName(),
          ( (FilterImpl) filter ).getParameters(),
          filter.getFilterDefinition().getParameterTypes()
      );
      result.add( key );
    }
    return result;
  }
}
origin: org.hibernate/com.springsource.org.hibernate

  public static Set<FilterKey> createFilterKeys(Map<String,Filter> enabledFilters) {
    if ( enabledFilters.size()==0 ) {
      return null;
    }
    Set<FilterKey> result = new HashSet<FilterKey>();
    for ( Filter filter : enabledFilters.values() ) {
      FilterKey key = new FilterKey(
          filter.getName(),
          ( (FilterImpl) filter ).getParameters(),
          filter.getFilterDefinition().getParameterTypes()
      );
      result.add( key );
    }
    return result;
  }
}
origin: org.hibernate/com.springsource.org.hibernate.core

  public static Set<FilterKey> createFilterKeys(Map<String,Filter> enabledFilters) {
    if ( enabledFilters.size()==0 ) {
      return null;
    }
    Set<FilterKey> result = new HashSet<FilterKey>();
    for ( Filter filter : enabledFilters.values() ) {
      FilterKey key = new FilterKey(
          filter.getName(),
          ( (FilterImpl) filter ).getParameters(),
          filter.getFilterDefinition().getParameterTypes()
      );
      result.add( key );
    }
    return result;
  }
}
org.hibernate.engine.spiFilterDefinitiongetParameterTypes

Popular methods of FilterDefinition

  • <init>
    Construct a new FilterDefinition instance.
  • getDefaultFilterCondition
  • getFilterName
    Get the name of the filter this configuration defines.
  • getParameterNames
    Get a set of the parameters defined by this configuration.
  • getParameterType
    Retrieve the type of the named parameter defined for this filter.

Popular in Java

  • Reactive rest calls using spring rest template
  • getSharedPreferences (Context)
  • getSystemService (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • JFrame (javax.swing)
  • JTable (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top 25 Plugins for Webstorm
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