Interface MethodMatcher
-
- All Superinterfaces:
io.micronaut.core.order.Ordered
- All Known Implementing Classes:
AbstractPatternMethodMatcher
,AbstractPrefixPatternMethodMatcher
,AbstractSpecificationMethodMatcher
,CountMethodMatcher
,CountSpecificationMethodMatcher
,DeleteAllSpecificationMethodMatcher
,DeleteMethodMatcher
,ExistsMethodMatcher
,FindAllSpecificationMethodMatcher
,FindMethodMatcher
,FindOneSpecificationMethodMatcher
,FindPageSpecificationMethodMatcher
,ListMethodMatcher
,MongoExecutorQueryMethodMatcher
,MongoRawQueryMethodMatcher
,RawQueryMethodMatcher
,SaveEntityMethodMatcher
,SaveOneMethodMatcher
,UpdateAllSpecificationMethodMatcher
,UpdateMethodMatcher
public interface MethodMatcher extends io.micronaut.core.order.Ordered
The method matcher.- Since:
- 3.2
- Author:
- Denis Stepanov
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
MethodMatcher.MethodMatch
Method match implementation.
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_POSITION
The default position.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default int
getOrder()
MethodMatcher.MethodMatch
match(MethodMatchContext matchContext)
-
-
-
Field Detail
-
DEFAULT_POSITION
static final int DEFAULT_POSITION
The default position.- See Also:
- Constant Field Values
-
-
Method Detail
-
getOrder
default int getOrder()
- Specified by:
getOrder
in interfaceio.micronaut.core.order.Ordered
-
match
@Nullable MethodMatcher.MethodMatch match(@NonNull MethodMatchContext matchContext)
-
-