Uses of Interface
io.github.lukehutch.fastclasspathscanner.matchprocessor.StaticFinalFieldMatchProcessor
-
Packages that use StaticFinalFieldMatchProcessor Package Description io.github.lukehutch.fastclasspathscanner io.github.lukehutch.fastclasspathscanner.scanner -
-
Uses of StaticFinalFieldMatchProcessor in io.github.lukehutch.fastclasspathscanner
Methods in io.github.lukehutch.fastclasspathscanner with parameters of type StaticFinalFieldMatchProcessor Modifier and Type Method Description 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.FastClasspathScanner
FastClasspathScanner. matchStaticFinalFieldNames(Set<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. -
Uses of StaticFinalFieldMatchProcessor in io.github.lukehutch.fastclasspathscanner.scanner
Methods in io.github.lukehutch.fastclasspathscanner.scanner with parameters of type StaticFinalFieldMatchProcessor Modifier and Type Method Description void
ScanSpec. 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.void
ScanSpec. 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.void
ScanSpec. matchStaticFinalFieldNames(Set<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.
-