Interface CsvXPorterProvider
- All Known Implementing Classes:
CsvPrintProvider,FileXPorterProvider,GitCsvXPorterProvider
public interface CsvXPorterProvider
The interface CsvXPorterProvider describes the provider for SPI.
- Since:
- 2.5 (19.02.25)
- Author:
- oboehm
-
Method Summary
Modifier and TypeMethodDescriptioncreate()Creates an object which implements theCsvXPorterinterface.booleanIndicates if the provider supports a given protocol.default booleanIndicates if the provider supports the given URI.
-
Method Details
-
create
CsvXPorter create()Creates an object which implements theCsvXPorterinterface.- Returns:
- a CsvXPorter object
-
supports
Indicates if the provider supports a given protocol.- Parameters:
protocol- e.g. "file"- Returns:
- true or false
-
supports
Indicates if the provider supports the given URI.- Parameters:
uri- e.g. "file://hello/world"- Returns:
- true or false
- Since:
- 2.6
-