Codota Logo
SubTypesScanner.getMetadataAdapter
Code IndexAdd Codota 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 LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
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

  • Creating JSON documents from java classes using gson
  • getExternalFilesDir (Context)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • getApplicationContext (Context)
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement.A servlet is a small Java program that runs within
  • BoxLayout (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now