Class DeleteMethodMatcher
- java.lang.Object
-
- io.micronaut.data.processor.visitors.finders.AbstractPatternMethodMatcher
-
- io.micronaut.data.processor.visitors.finders.DeleteMethodMatcher
-
- All Implemented Interfaces:
io.micronaut.core.order.Ordered
,MethodMatcher
@Internal public final class DeleteMethodMatcher extends AbstractPatternMethodMatcher
Count method matcher.- Since:
- 3.2
- Author:
- Denis Stepanov
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.micronaut.data.processor.visitors.finders.MethodMatcher
MethodMatcher.MethodMatch
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.regex.Pattern
METHOD_PATTERN
-
Fields inherited from class io.micronaut.data.processor.visitors.finders.AbstractPatternMethodMatcher
patternWithBySyntax, patternWithoutBySyntax
-
Fields inherited from interface io.micronaut.data.processor.visitors.finders.MethodMatcher
DEFAULT_POSITION
-
-
Constructor Summary
Constructors Constructor Description DeleteMethodMatcher()
Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MethodMatcher.MethodMatch
match(MethodMatchContext matchContext, java.util.regex.Matcher matcher)
Handle match.-
Methods inherited from class io.micronaut.data.processor.visitors.finders.AbstractPatternMethodMatcher
match
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.micronaut.data.processor.visitors.finders.MethodMatcher
getOrder
-
-
-
-
Method Detail
-
match
public MethodMatcher.MethodMatch match(MethodMatchContext matchContext, java.util.regex.Matcher matcher)
Description copied from class:AbstractPatternMethodMatcher
Handle match.- Specified by:
match
in classAbstractPatternMethodMatcher
- Parameters:
matchContext
- The match contextmatcher
- The matcher- Returns:
- The method match
-
-