Interface AutoEntryProcessorFactory
- All Known Implementing Classes:
FactoryAutoEntryProcessorFactory,ProvidesAutoEntryProcessorFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A factory for auto entry processors. The factories are discovered using SPI when the annotation processing
environment is initialized.
- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescriptionconstructProcessor(@NotNull ProcessingEnvironment environment) Constructs an auto entry processor for the given processing environment.
-
Method Details
-
constructProcessor
@NotNull @NotNull AutoEntryProcessor constructProcessor(@NotNull @NotNull ProcessingEnvironment environment) Constructs an auto entry processor for the given processing environment.- Parameters:
environment- the current annotation processing environment.- Returns:
- the constructed auto entry processor.
-