FiltersExtractor

The FiltersExtractor annotation is useful to indicate those methods used to extract from the raw filters set the specific set indicates by the method. For example:


         
             description = "Method used to extracts the plate filters to use"
         )
         private HashSet<String> extractPlateFilters() {
             return extractFiltersByPattern(your_pattern); // the specific pattern to extract the plates
         }
    

Author

N7ghtm4r3 - Tecknobit

Since

1.0.7

Functions

Link copied to clipboard
abstract fun annotationType(): Class<out Annotation>
Link copied to clipboard
abstract fun description(): String
Short description to indicate what the method will extract
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
abstract fun toString(): String