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

How to use
acceptResult
method
in
org.reflections.scanners.SubTypesScanner

Best Java code snippets using org.reflections.scanners.SubTypesScanner.acceptResult (Showing top 5 results out of 315)

origin: ronmamo/reflections

  @SuppressWarnings({"unchecked"})
  public void scan(final Object cls) {
    String className = getMetadataAdapter().getClassName(cls);
    String superclass = getMetadataAdapter().getSuperclassName(cls);

    if (acceptResult(superclass)) {
      getStore().put(superclass, className);
    }

    for (String anInterface : (List<String>) getMetadataAdapter().getInterfacesNames(cls)) {
      if (acceptResult(anInterface)) {
        getStore().put(anInterface, className);
      }
    }
  }
}
origin: org.reflections/reflections

  @SuppressWarnings({"unchecked"})
  public void scan(final Object cls) {
    String className = getMetadataAdapter().getClassName(cls);
    String superclass = getMetadataAdapter().getSuperclassName(cls);

    if (acceptResult(superclass)) {
      getStore().put(superclass, className);
    }

    for (String anInterface : (List<String>) getMetadataAdapter().getInterfacesNames(cls)) {
      if (acceptResult(anInterface)) {
        getStore().put(anInterface, className);
      }
    }
  }
}
origin: ai.h2o/reflections

  @SuppressWarnings({"unchecked"})
  public void scan(final Object cls) {
    String className = getMetadataAdapter().getClassName(cls);
    String superclass = getMetadataAdapter().getSuperclassName(cls);

    if (acceptResult(superclass)) {
      getStore().put(superclass, className);
    }

    for (String anInterface : (List<String>) getMetadataAdapter().getInterfacesNames(cls)) {
      if (acceptResult(anInterface)) {
        getStore().put(anInterface, className);
      }
    }
  }
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.reflections

  @SuppressWarnings({"unchecked"})
  public void scan(final Object cls) {
    String className = getMetadataAdapter().getClassName(cls);
    String superclass = getMetadataAdapter().getSuperclassName(cls);

    if (acceptResult(superclass)) {
      getStore().put(superclass, className);
    }

    for (String anInterface : (List<String>) getMetadataAdapter().getInterfacesNames(cls)) {
      if (acceptResult(anInterface)) {
        getStore().put(anInterface, className);
      }
    }
  }
}
origin: org.rapidpm/rapidpm-dependencies-core-reflections

 @SuppressWarnings({"unchecked"})
 public void scan(final Object cls) {
  String className = getMetadataAdapter().getClassName(cls);
  String superclass = getMetadataAdapter().getSuperclassName(cls);

  if (acceptResult(superclass)) {
   getStore().put(superclass , className);
  }

  for (String anInterface : (List<String>) getMetadataAdapter().getInterfacesNames(cls)) {
   if (acceptResult(anInterface)) {
    getStore().put(anInterface , className);
   }
  }
 }
}
org.reflections.scannersSubTypesScanneracceptResult

Popular methods of SubTypesScanner

  • <init>
    created new SubTypesScanner.
  • filterResultsBy
  • getMetadataAdapter
  • getStore

Popular in Java

  • Creating JSON documents from java classes using gson
  • startActivity (Activity)
  • onRequestPermissionsResult (Fragment)
  • compareTo (BigDecimal)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • String (java.lang)
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Collectors (java.util.stream)
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • PhpStorm for WordPress
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