Class AbstractPatternMethodMatcher

java.lang.Object
io.micronaut.data.processor.visitors.finders.AbstractPatternMethodMatcher
All Implemented Interfaces:
io.micronaut.core.order.Ordered, MethodMatcher

@Deprecated(forRemoval=true) public abstract class AbstractPatternMethodMatcher extends Object implements MethodMatcher
Deprecated, for removal: This API element is subject to removal in a future version.
No longer used
Abstract pattern method match that support two variations of method names. - With `by` syntax - projection followed by predicates - Without `by` syntax - predicates only
Since:
3.2
Author:
Denis Stepanov
  • Field Details

    • patternWithBySyntax

      protected final Pattern patternWithBySyntax
      Deprecated, for removal: This API element is subject to removal in a future version.
    • patternWithoutBySyntax

      protected final Pattern patternWithoutBySyntax
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Constructor Details

    • AbstractPatternMethodMatcher

      protected AbstractPatternMethodMatcher(boolean supportsProjections, @NonNull @NonNull String... prefixes)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Default constructor.
      Parameters:
      supportsProjections - true of matcher supports projections
      prefixes - The prefixes
  • Method Details