接口 BuiltInFilters
- 所有已知实现类:
BuiltinFiltersImpl
public interface BuiltInFilters
-
方法概要
修饰符和类型方法说明getDeclaredAlreadyDeletedFilter(Class<?> type) Get the builtin `already deleted` filter by java typegetDeclaredAlreadyDeletedFilter(org.babyfish.jimmer.meta.ImmutableType immutableType) Get the builtin `already deleted` filter by jimmer typegetDeclaredNotDeletedFilter(Class<?> type) Get the builtin `not deleted` filter by java typegetDeclaredNotDeletedFilter(org.babyfish.jimmer.meta.ImmutableType immutableType) Get the builtin `not deleted` filter by jimmer type
-
方法详细资料
-
getDeclaredNotDeletedFilter
Get the builtin `not deleted` filter by jimmer typeNote: The logical deleted property decorated by
LogicalDeletedmust be declared in the type directly, returns null if this property is defined in any supertype- 参数:
immutableType- Jimmer Type- 返回:
- Filter or null.
-
getDeclaredNotDeletedFilter
Get the builtin `not deleted` filter by java typeNote: The logical deleted property decorated by
LogicalDeletedmust be declared in the type directly, returns null if this property is defined in any supertype- 参数:
type- Java Type- 返回:
- Filter or null.
-
getDeclaredAlreadyDeletedFilter
Get the builtin `already deleted` filter by jimmer typeNote: The logical deleted property decorated by
LogicalDeletedmust be declared in the type directly, returns null if this property is defined in any supertype- 参数:
immutableType- Jimmer Type- 返回:
- Filter or null.
-
getDeclaredAlreadyDeletedFilter
Get the builtin `already deleted` filter by java typeNote: The logical deleted property decorated by
LogicalDeletedmust be declared in the type directly, returns null if this property is defined in any supertype- 参数:
type- Java Type- 返回:
- Filter or null.
-