public class BinarySparseDatasetParser
extends java.lang.Object
| Constructor and Description |
|---|
BinarySparseDatasetParser()
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
BinarySparseDataset |
parse(java.io.File file)
Parse a binary sparse dataset from given file.
|
BinarySparseDataset |
parse(java.io.InputStream stream)
Parse a binary sparse dataset from an input stream.
|
BinarySparseDataset |
parse(java.lang.String path)
Parse a binary sparse dataset from given file.
|
BinarySparseDataset |
parse(java.lang.String name,
java.io.File file)
Parse a binary sparse dataset from given file.
|
BinarySparseDataset |
parse(java.lang.String name,
java.io.InputStream stream)
Parse a binary sparse dataset from an input stream.
|
BinarySparseDataset |
parse(java.lang.String name,
java.lang.String path)
Parse a binary sparse dataset from given file.
|
BinarySparseDataset |
parse(java.lang.String name,
java.net.URI uri)
Parse a binary sparse dataset from given URI.
|
BinarySparseDataset |
parse(java.net.URI uri)
Parse a binary sparse dataset from given URI.
|
public BinarySparseDataset parse(java.net.URI uri) throws java.io.IOException, java.text.ParseException
java.io.IOExceptionjava.text.ParseExceptionpublic BinarySparseDataset parse(java.lang.String name, java.net.URI uri) throws java.io.IOException, java.text.ParseException
uri - the URI of data source.java.io.IOExceptionjava.text.ParseExceptionpublic BinarySparseDataset parse(java.lang.String path) throws java.io.IOException, java.text.ParseException
java.io.IOExceptionjava.text.ParseExceptionpublic BinarySparseDataset parse(java.lang.String name, java.lang.String path) throws java.io.IOException, java.text.ParseException
path - the file path of data source.java.io.IOExceptionjava.text.ParseExceptionpublic BinarySparseDataset parse(java.io.File file) throws java.io.IOException, java.text.ParseException
java.io.IOExceptionjava.text.ParseExceptionpublic BinarySparseDataset parse(java.lang.String name, java.io.File file) throws java.io.IOException, java.text.ParseException
file - the file of data source.java.io.IOExceptionjava.text.ParseExceptionpublic BinarySparseDataset parse(java.io.InputStream stream) throws java.io.IOException, java.text.ParseException
stream - the input stream of data.java.io.IOExceptionjava.text.ParseExceptionpublic BinarySparseDataset parse(java.lang.String name, java.io.InputStream stream) throws java.io.IOException, java.text.ParseException
name - the name of dataset.stream - the input stream of data.java.io.IOExceptionjava.text.ParseException