类 BuiltinFiltersImpl

java.lang.Object
org.babyfish.jimmer.sql.filter.impl.BuiltinFiltersImpl
所有已实现的接口:
BuiltInFilters

public class BuiltinFiltersImpl extends Object implements BuiltInFilters
  • 构造器详细资料

    • BuiltinFiltersImpl

      public BuiltinFiltersImpl()
  • 方法详细资料

    • getDeclaredNotDeletedFilter

      public Filter<Props> getDeclaredNotDeletedFilter(org.babyfish.jimmer.meta.ImmutableType immutableType)
      从接口复制的说明: BuiltInFilters
      Get the builtin `not deleted` filter by jimmer type

      Note: The logical deleted property decorated by LogicalDeleted must be declared in the type directly, returns null if this property is defined in any supertype

      指定者:
      getDeclaredNotDeletedFilter 在接口中 BuiltInFilters
      参数:
      immutableType - Jimmer Type
      返回:
      Filter or null.
    • getDeclaredNotDeletedFilter

      public Filter<Props> getDeclaredNotDeletedFilter(Class<?> type)
      从接口复制的说明: BuiltInFilters
      Get the builtin `not deleted` filter by java type

      Note: The logical deleted property decorated by LogicalDeleted must be declared in the type directly, returns null if this property is defined in any supertype

      指定者:
      getDeclaredNotDeletedFilter 在接口中 BuiltInFilters
      参数:
      type - Java Type
      返回:
      Filter or null.
    • getDeclaredAlreadyDeletedFilter

      public Filter<Props> getDeclaredAlreadyDeletedFilter(org.babyfish.jimmer.meta.ImmutableType immutableType)
      从接口复制的说明: BuiltInFilters
      Get the builtin `already deleted` filter by jimmer type

      Note: The logical deleted property decorated by LogicalDeleted must be declared in the type directly, returns null if this property is defined in any supertype

      指定者:
      getDeclaredAlreadyDeletedFilter 在接口中 BuiltInFilters
      参数:
      immutableType - Jimmer Type
      返回:
      Filter or null.
    • getDeclaredAlreadyDeletedFilter

      public Filter<Props> getDeclaredAlreadyDeletedFilter(Class<?> type)
      从接口复制的说明: BuiltInFilters
      Get the builtin `already deleted` filter by java type

      Note: The logical deleted property decorated by LogicalDeleted must be declared in the type directly, returns null if this property is defined in any supertype

      指定者:
      getDeclaredAlreadyDeletedFilter 在接口中 BuiltInFilters
      参数:
      type - Java Type
      返回:
      Filter or null.