Interface FindersUtils


@Internal public interface FindersUtils
Finders utils.
  • Method Details

    • getDefaultInterceptors

      static List<FindInterceptorDef> getDefaultInterceptors(io.micronaut.inject.visitor.VisitorContext visitorContext)
    • resolveInterceptorTypeByOperationType

      static FindersUtils.InterceptorMatch resolveInterceptorTypeByOperationType(boolean hasEntityParameter, boolean hasMultipleEntityParameter, DataMethod.OperationType operationType, MethodMatchContext matchContext)
    • pickSaveOneInterceptor

      static FindersUtils.InterceptorMatch pickSaveOneInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickUpdateAllEntitiesInterceptor

      static FindersUtils.InterceptorMatch pickUpdateAllEntitiesInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickProcedureInterceptor

      static FindersUtils.InterceptorMatch pickProcedureInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickDeleteInterceptor

      static FindersUtils.InterceptorMatch pickDeleteInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickDeleteAllInterceptor

      static FindersUtils.InterceptorMatch pickDeleteAllInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickDeleteAllReturningInterceptor

      static FindersUtils.InterceptorMatch pickDeleteAllReturningInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickSaveEntityInterceptor

      static FindersUtils.InterceptorMatch pickSaveEntityInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickSaveAllEntitiesInterceptor

      static FindersUtils.InterceptorMatch pickSaveAllEntitiesInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickUpdateInterceptor

      static FindersUtils.InterceptorMatch pickUpdateInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickUpdateEntityInterceptor

      static FindersUtils.InterceptorMatch pickUpdateEntityInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • resolveFindInterceptor

      static FindersUtils.InterceptorMatch resolveFindInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • resolveSyncFindInterceptor

      static FindersUtils.InterceptorMatch resolveSyncFindInterceptor(@NonNull @NonNull MethodMatchContext matchContext, @NonNull @NonNull io.micronaut.inject.ast.ClassElement returnType)
    • resolveReactiveFindInterceptor

      static FindersUtils.InterceptorMatch resolveReactiveFindInterceptor(@NonNull @NonNull MethodMatchContext matchContext, @NonNull @NonNull io.micronaut.inject.ast.ClassElement returnType, @NonNull @NonNull io.micronaut.inject.ast.ClassElement reactiveType)
    • resolveAsyncFindInterceptor

      static FindersUtils.InterceptorMatch resolveAsyncFindInterceptor(@NonNull @NonNull MethodMatchContext matchContext, @NonNull @NonNull io.micronaut.inject.ast.ClassElement asyncType)
    • pickCountInterceptor

      static FindersUtils.InterceptorMatch pickCountInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickExistsInterceptor

      static FindersUtils.InterceptorMatch pickExistsInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickFindByIdInterceptor

      static FindersUtils.InterceptorMatch pickFindByIdInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickFindOneInterceptor

      static FindersUtils.InterceptorMatch pickFindOneInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickCountSpecInterceptor

      static FindersUtils.InterceptorMatch pickCountSpecInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickDeleteAllSpecInterceptor

      static FindersUtils.InterceptorMatch pickDeleteAllSpecInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickFindAllSpecInterceptor

      static FindersUtils.InterceptorMatch pickFindAllSpecInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickFindOneSpecInterceptor

      static FindersUtils.InterceptorMatch pickFindOneSpecInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickFindPageSpecInterceptor

      static FindersUtils.InterceptorMatch pickFindPageSpecInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickUpdateAllSpecInterceptor

      static FindersUtils.InterceptorMatch pickUpdateAllSpecInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • pickExistsSpecInterceptor

      static FindersUtils.InterceptorMatch pickExistsSpecInterceptor(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement returnType)
    • getAsyncType

      static io.micronaut.inject.ast.ClassElement getAsyncType(@NonNull @NonNull io.micronaut.inject.ast.MethodElement methodElement, @NonNull @NonNull io.micronaut.inject.ast.ClassElement returnType)
    • typeAndInterceptorEntry

      static FindersUtils.InterceptorMatch typeAndInterceptorEntry(MethodMatchContext matchContext, io.micronaut.inject.ast.ClassElement type, Class<? extends DataInterceptor> interceptor)
    • typeAndInterceptorEntry

      static FindersUtils.InterceptorMatch typeAndInterceptorEntry(io.micronaut.inject.ast.ClassElement type, io.micronaut.inject.ast.ClassElement interceptor)
    • isFutureType

      static boolean isFutureType(io.micronaut.inject.ast.MethodElement methodElement, @Nullable @Nullable io.micronaut.inject.ast.ClassElement type)
    • isReactiveType

      static boolean isReactiveType(@Nullable @Nullable io.micronaut.inject.ast.ClassElement type)
    • isPage

      static boolean isPage(MethodMatchContext methodMatchContext, io.micronaut.inject.ast.ClassElement typeArgument)
    • isSlice

      static boolean isSlice(MethodMatchContext methodMatchContext, io.micronaut.inject.ast.ClassElement typeArgument)
    • isContainer

      static boolean isContainer(io.micronaut.inject.ast.ClassElement typeArgument, Class<?> containerType)
    • isContainer

      static boolean isContainer(io.micronaut.inject.ast.ClassElement typeArgument, io.micronaut.inject.ast.ClassElement containerType)
    • isOneOfContainers

      static boolean isOneOfContainers(io.micronaut.inject.ast.ClassElement typeArgument, Class<?>... containers)
    • isContainer

      static boolean isContainer(io.micronaut.inject.ast.ClassElement typeArgument, String containerType)
    • isValidResultType

      static boolean isValidResultType(io.micronaut.inject.ast.ClassElement returnType)
    • isReactiveSingleResult

      static boolean isReactiveSingleResult(io.micronaut.inject.ast.ClassElement returnType)
    • getInterceptorElement

      static io.micronaut.inject.ast.ClassElement getInterceptorElement(@NonNull @NonNull MethodMatchContext matchContext, Class<? extends DataInterceptor> type)
      Obtain the interceptor element for the given class.
      Parameters:
      matchContext - The match context
      type - The type
      Returns:
      The element
    • getInterceptorElement

      static io.micronaut.inject.ast.ClassElement getInterceptorElement(@NonNull @NonNull MethodMatchContext matchContext, String type)
      Obtain the interceptor element for the given class name.
      Parameters:
      matchContext - The match context
      type - The type
      Returns:
      The element