接口 BuiltInFilters

所有已知实现类:
BuiltinFiltersImpl

public interface BuiltInFilters
  • 方法详细资料

    • getDeclaredNotDeletedFilter

      Filter<Props> getDeclaredNotDeletedFilter(org.babyfish.jimmer.meta.ImmutableType immutableType)
      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

      参数:
      immutableType - Jimmer Type
      返回:
      Filter or null.
    • getDeclaredNotDeletedFilter

      Filter<Props> getDeclaredNotDeletedFilter(Class<?> type)
      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

      参数:
      type - Java Type
      返回:
      Filter or null.
    • getDeclaredAlreadyDeletedFilter

      Filter<Props> getDeclaredAlreadyDeletedFilter(org.babyfish.jimmer.meta.ImmutableType immutableType)
      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

      参数:
      immutableType - Jimmer Type
      返回:
      Filter or null.
    • getDeclaredAlreadyDeletedFilter

      Filter<Props> getDeclaredAlreadyDeletedFilter(Class<?> type)
      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

      参数:
      type - Java Type
      返回:
      Filter or null.