Package | Description |
---|---|
io.github.lukehutch.fastclasspathscanner | |
io.github.lukehutch.fastclasspathscanner.classgraph |
Modifier and Type | Method and Description |
---|---|
FastClasspathScanner |
FastClasspathScanner.matchStaticFinalFieldNames(HashSet<String> fullyQualifiedStaticFinalFieldNames,
StaticFinalFieldMatchProcessor staticFinalFieldMatchProcessor)
Calls the given StaticFinalFieldMatchProcessor if classes are found on the classpath that contain static
final fields that match one of a set of fully-qualified field names, e.g.
|
FastClasspathScanner |
FastClasspathScanner.matchStaticFinalFieldNames(String[] fullyQualifiedStaticFinalFieldNames,
StaticFinalFieldMatchProcessor staticFinalFieldMatchProcessor)
Calls the given StaticFinalFieldMatchProcessor if classes are found on the classpath that contain static
final fields that match one of a list of fully-qualified field names, e.g.
|
FastClasspathScanner |
FastClasspathScanner.matchStaticFinalFieldNames(String fullyQualifiedStaticFinalFieldName,
StaticFinalFieldMatchProcessor staticFinalFieldMatchProcessor)
Calls the given StaticFinalFieldMatchProcessor if classes are found on the classpath that contain static
final fields that match a fully-qualified field name, e.g.
|
Modifier and Type | Method and Description |
---|---|
void |
ClassGraphBuilder.addStaticFinalFieldProcessor(String className,
String fieldName,
StaticFinalFieldMatchProcessor staticFinalFieldMatchProcessor)
Add a StaticFinalFieldMatchProcessor that should be called if a static final field with the given name is
encountered in a class with the given fully-qualified classname while reading a classfile header.
|
Copyright © 2015. All rights reserved.