Package org.openjdk.jmh.generators.core
Interface GeneratorSource
-
- All Known Implementing Classes:
APGeneratorSource,ASMGeneratorSource,RFGeneratorSource
public interface GeneratorSourceGenerator source.The entry point for
BenchmarkGenerator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<ClassInfo>getClasses()ClassInforesolveClass(java.lang.String className)Resolve class info for a name.
-
-
-
Method Detail
-
getClasses
java.util.Collection<ClassInfo> getClasses()
- Returns:
- collection of all resolved classes
-
resolveClass
ClassInfo resolveClass(java.lang.String className)
Resolve class info for a name.Users may call this method for the classes not listed in
getClasses()call, the implementation has to have the fall-back strategy for these cases.- Parameters:
className- class name- Returns:
- class metainfo
-
-