Package io.jmix.core.metamodel.model
Interface Store
- All Known Implementing Classes:
StoreImpl
public interface Store
Defines a data store used in the application.
-
Method Summary
Modifier and TypeMethodDescriptionThe data store descriptor.getName()
The data store name.boolean
Default sort order of null values.boolean
Whether the data store supports equality check and sorting for LOB columns.
-
Method Details
-
getName
String getName()The data store name. -
getDescriptor
StoreDescriptor getDescriptor()The data store descriptor. -
isNullsLastSorting
boolean isNullsLastSorting()Default sort order of null values. -
supportsLobSortingAndFiltering
boolean supportsLobSortingAndFiltering()Whether the data store supports equality check and sorting for LOB columns.
-