Uses of Interface
elki.datasource.parser.Parser
-
Packages that use Parser Package Description elki.datasource elki.datasource.parser Parsers for different file formats and data types. -
-
Uses of Parser in elki.datasource
Fields in elki.datasource declared as Parser Modifier and Type Field Description protected ParserAbstractDatabaseConnection.Par. parserParser to useprivate ParserConcatenateFilesDatabaseConnection. parserThe parser.(package private) ParserInputStreamDatabaseConnection. parserHolds the instance of the parser.Constructors in elki.datasource with parameters of type Parser Constructor Description ConcatenateFilesDatabaseConnection(java.util.List<java.net.URI> files, Parser parser, java.util.List<? extends elki.datasource.filter.ObjectFilter> filters)Constructor.FileBasedDatabaseConnection(java.util.List<? extends elki.datasource.filter.ObjectFilter> filters, Parser parser, java.io.InputStream in)Constructor.FileBasedDatabaseConnection(java.util.List<? extends elki.datasource.filter.ObjectFilter> filters, Parser parser, java.lang.String infile)Constructor.FileBasedDatabaseConnection(java.util.List<? extends elki.datasource.filter.ObjectFilter> filters, Parser parser, java.net.URI infile)Constructor.InputStreamDatabaseConnection(java.io.InputStream ins, java.util.List<? extends elki.datasource.filter.ObjectFilter> filters, Parser parser)Constructor.InputStreamDatabaseConnection(java.util.function.Supplier<java.io.InputStream> in, java.util.List<? extends elki.datasource.filter.ObjectFilter> filters, Parser parser)Constructor. -
Uses of Parser in elki.datasource.parser
Subinterfaces of Parser in elki.datasource.parser Modifier and Type Interface Description interfaceStreamingParserInterface for streaming parsers, that may be much more efficient in combination with filters.Classes in elki.datasource.parser that implement Parser Modifier and Type Class Description classAbstractStreamingParserBase class for streaming parsers.classArffParserParser to load WEKA .arff files into ELKI.classBitVectorLabelParserParser for parsing one BitVector per line, bits separated by whitespace.classCategorialDataAsNumberVectorParser<V extends elki.data.NumberVector>A very simple parser for categorial data, which will then be encoded as numbers.classLibSVMFormatParser<V extends elki.data.SparseNumberVector>Parser to read libSVM format files.classNumberVectorLabelParser<V extends elki.data.NumberVector>Parser for a simple CSV type of format, with columns separated by the given pattern (default: whitespace).classSimplePolygonParserParser to load polygon data (2D and 3D only) from a simple format.classSimpleTransactionParserSimple parser for transactional data, such as market baskets.classSparseNumberVectorLabelParser<V extends elki.data.SparseNumberVector>Parser for parsing one point per line, attributes separated by whitespace.classStringParserParser that loads a text file for use with string similarity measures.classTermFrequencyParser<V extends elki.data.SparseNumberVector>A parser to load term frequency data, which essentially are sparse vectors with text keys.
-