Interface MatrixImportSourceSelector
-
- All Known Implementing Classes:
AbstractMatrixImportSourceSelector
,DefaultMatrixImportSourceSelector
public interface MatrixImportSourceSelector
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MatrixByteArrayImportSource
byteArray(byte[] bytes)
MatrixClipboardImportSource
clipboard()
MatrixFileImportSource
file(java.io.File file)
MatrixFileImportSource
file(java.lang.String file)
MatrixReaderImportSource
reader(java.io.Reader reader)
MatrixStreamImportSource
stream(java.io.InputStream stream)
MatrixStringImportSource
string(java.lang.String s)
MatrixURLImportSource
url(java.net.URL url)
-
-
-
Method Detail
-
clipboard
MatrixClipboardImportSource clipboard()
-
url
MatrixURLImportSource url(java.net.URL url) throws java.io.IOException
- Throws:
java.io.IOException
-
file
MatrixFileImportSource file(java.io.File file) throws java.io.IOException
- Throws:
java.io.IOException
-
file
MatrixFileImportSource file(java.lang.String file) throws java.io.IOException
- Throws:
java.io.IOException
-
reader
MatrixReaderImportSource reader(java.io.Reader reader) throws java.io.IOException
- Throws:
java.io.IOException
-
stream
MatrixStreamImportSource stream(java.io.InputStream stream) throws java.io.IOException
- Throws:
java.io.IOException
-
string
MatrixStringImportSource string(java.lang.String s)
-
byteArray
MatrixByteArrayImportSource byteArray(byte[] bytes)
-
-