Interface ExcelExportTypePredicate
-
- All Superinterfaces:
java.util.function.Predicate<ComposedTypeModel>
- All Known Implementing Classes:
PermissionCrudTypePredicate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ExcelExportTypePredicate extends java.util.function.Predicate<ComposedTypeModel>
Predicate which tests if givenComposedTypeModelshould be allowed to be exported by Excel. You can easily limit the types that you would like to be exportable to Excel files.- See Also:
ExcelExportService,DefaultExcelExportService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleantest(ComposedTypeModel type)
-
-
-
Method Detail
-
test
boolean test(ComposedTypeModel type)
- Specified by:
testin interfacejava.util.function.Predicate<ComposedTypeModel>
-
-