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 theCsvXPorter
interface.boolean
Indicates if the provider supports a given protocol.default boolean
Indicates if the provider supports the given URI.
-
Method Details
-
create
CsvXPorter create()Creates an object which implements theCsvXPorter
interface.- 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
-