Module datarush.library
Class ARFFAnalyzer.Analysis
- java.lang.Object
-
- com.pervasive.datarush.operators.io.textfile.ARFFAnalyzer.Analysis
-
- Enclosing class:
- ARFFAnalyzer
public static class ARFFAnalyzer.Analysis extends Object
Contains the results of analyzing an ARFF file. This includes information about the schema, the embedded comments, and the representation mode (either sparse or dense).
-
-
Constructor Summary
Constructors Constructor Description Analysis()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getComments()
Gets the comments present in the source file.ARFFMode
getMode()
Gets the data representation mode used in the source file.String
getRelationName()
Gets the name of the relation property of the source file.TextRecord
getSchema()
Gets the schema for parsing the source file.
-
-
-
Method Detail
-
getRelationName
public String getRelationName()
Gets the name of the relation property of the source file.- Returns:
- the relation contained in the source
-
getMode
public ARFFMode getMode()
Gets the data representation mode used in the source file.- Returns:
- the representation format of the source
-
getSchema
public TextRecord getSchema()
Gets the schema for parsing the source file. This is derived from the schema information present in the source.- Returns:
- the schema for data records in the source
-
-