See: Description
| Interface | Description |
|---|---|
| DataProvider<T> |
The DataProvider interface defines how applications interact with the data
that is retrieved via a
DataReader. |
| Class | Description |
|---|---|
| ListDataProvider<T> |
The ListDataProvider is an implementation of
DataProvider that allows
the retrieval and parsing of a list of data entities. |
| ListDataProviderBuilder<T> |
Builder class for creating an
ListDataProvider. |
| ObjectDataProvider<T> |
The ObjectDataProvider is an implementation of
DataProvider that allows
the retrieval and parsing of data that is represented as a single Java instance. |
| ObjectDataProviderBuilder<T> |
Builder class for creating an
ObjectDataProvider. |
io.datafx.io package.
DataFX distinguishes between 2 types of external data:
ObjectDataProvider is the
provider you have to use. If you prefer to configure this provider using
the builder pattern, you can leverage the ObjectDataProviderBuilder
class.
ListDataProvider, or the
corresponding builder class ListDataProviderBuilder.