Class DeleteAllSpecificationMethodMatcher
- java.lang.Object
-
- io.micronaut.data.processor.visitors.finders.AbstractPrefixPatternMethodMatcher
-
- io.micronaut.data.processor.visitors.finders.AbstractSpecificationMethodMatcher
-
- io.micronaut.data.processor.visitors.finders.spec.DeleteAllSpecificationMethodMatcher
-
- All Implemented Interfaces:
io.micronaut.core.order.Ordered
,MethodMatcher
@Internal public class DeleteAllSpecificationMethodMatcher extends AbstractSpecificationMethodMatcher
Delete all specification method.- 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 inherited from class io.micronaut.data.processor.visitors.finders.AbstractPrefixPatternMethodMatcher
pattern
-
Fields inherited from interface io.micronaut.data.processor.visitors.finders.MethodMatcher
DEFAULT_POSITION
-
-
Constructor Summary
Constructors Constructor Description DeleteAllSpecificationMethodMatcher()
Find one method.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
isMatchesParameters(MethodMatchContext matchContext)
Is matches parameters.protected MethodMatcher.MethodMatch
match(MethodMatchContext matchContext, java.util.regex.Matcher matcher)
Handle the match.-
Methods inherited from class io.micronaut.data.processor.visitors.finders.AbstractSpecificationMethodMatcher
getInterceptorElement, getOrder, isFirstParameterMicronautDataDeleteSpecification, isFirstParameterMicronautDataQuerySpecification, isFirstParameterMicronautDataUpdateSpecification, isFirstParameterMicronautJpaSpecification, isFirstParameterSpringJpaSpecification, match
-
-
-
-
Method Detail
-
match
protected MethodMatcher.MethodMatch match(MethodMatchContext matchContext, java.util.regex.Matcher matcher)
Description copied from class:AbstractPrefixPatternMethodMatcher
Handle the match.- Specified by:
match
in classAbstractPrefixPatternMethodMatcher
- Parameters:
matchContext
- The match contextmatcher
- The matcher- Returns:
- The method matcher
-
isMatchesParameters
protected boolean isMatchesParameters(MethodMatchContext matchContext)
Description copied from class:AbstractSpecificationMethodMatcher
Is matches parameters.- Overrides:
isMatchesParameters
in classAbstractSpecificationMethodMatcher
- Parameters:
matchContext
- The context- Returns:
- true if matches
-
-