congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
SubTypesScanner.getMetadataAdapter
Code IndexAdd Tabnine to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew ArrayList()
  • Codota Iconnew LinkedList()
  • Smart code suggestions by Tabnine
}
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.scannersSubTypesScannergetMetadataAdapter

Popular methods of SubTypesScanner

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

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getExternalFilesDir (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • requestLocationUpdates (LocationManager)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Runner (org.openjdk.jmh.runner)
  • 14 Best Plugins for Eclipse
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