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
- 
Nested Class SummaryNested classes/interfaces inherited from interface io.micronaut.data.processor.visitors.finders.MethodMatcherMethodMatcher.MethodMatch
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected final PatternDeprecated, for removal: This API element is subject to removal in a future version.protected final PatternDeprecated, for removal: This API element is subject to removal in a future version.Fields inherited from interface io.micronaut.data.processor.visitors.finders.MethodMatcherDEFAULT_POSITIONFields inherited from interface io.micronaut.core.order.OrderedHIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedAbstractPatternMethodMatcher(boolean supportsProjections, @NonNull String... prefixes) Deprecated, for removal: This API element is subject to removal in a future version.Default constructor.
- 
Method SummaryModifier and TypeMethodDescriptionmatch(MethodMatchContext matchContext) Deprecated, for removal: This API element is subject to removal in a future version.protected abstract MethodMatcher.MethodMatchmatch(MethodMatchContext matchContext, Matcher matcher) Deprecated, for removal: This API element is subject to removal in a future version.Handle match.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.micronaut.data.processor.visitors.finders.MethodMatchergetOrder
- 
Field Details- 
patternWithBySyntaxDeprecated, for removal: This API element is subject to removal in a future version.
- 
patternWithoutBySyntaxDeprecated, for removal: This API element is subject to removal in a future version.
 
- 
- 
Constructor Details- 
AbstractPatternMethodMatcherprotected 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- 
matchDeprecated, for removal: This API element is subject to removal in a future version.- Specified by:
- matchin interface- MethodMatcher
 
- 
matchprotected abstract MethodMatcher.MethodMatch match(MethodMatchContext matchContext, Matcher matcher) Deprecated, for removal: This API element is subject to removal in a future version.Handle match.- Parameters:
- matchContext- The match context
- matcher- The matcher
- Returns:
- The method match
 
 
-