Uses of Interface
com.pervasive.datarush.schema.TextRecordDiscoverer
-
Packages that use TextRecordDiscoverer Package Description com.pervasive.datarush.operators.io.textfile Provides operators for reading and writing text data.com.pervasive.datarush.schema Provides an object model for capturing schema information used primarily by thetextfilepackage. -
-
Uses of TextRecordDiscoverer in com.pervasive.datarush.operators.io.textfile
Methods in com.pervasive.datarush.operators.io.textfile that return TextRecordDiscoverer Modifier and Type Method Description TextRecordDiscovererReadDelimitedText. getSchemaDiscovery()Gets the schema discoverer to use on the delimited text source.TextRecordDiscovererReadJSON. getSchemaDiscovery()Gets the schema discoverer to use on the JSON text source.TextRecordDiscovererWriteDelimitedText. getSchemaDiscovery()Gets the schema discoverer to use on for the delimited text.Methods in com.pervasive.datarush.operators.io.textfile with parameters of type TextRecordDiscoverer Modifier and Type Method Description voidReadDelimitedText. setSchemaDiscovery(TextRecordDiscoverer discoverer)Sets the schema discoverer to use against the delimited text source.voidReadJSON. setSchemaDiscovery(TextRecordDiscoverer discoverer)Sets the schema discoverer to use against the JSON text source.voidWriteDelimitedText. setSchemaDiscovery(TextRecordDiscoverer discoverer)Sets the schema discoverer to use for the delimited text. -
Uses of TextRecordDiscoverer in com.pervasive.datarush.schema
Classes in com.pervasive.datarush.schema that implement TextRecordDiscoverer Modifier and Type Class Description classJsonPatternBasedDiscoveryDiscovers a schema for JSON text by checking values against the discovered JSON types and various regular expressions which map to data types.classPatternBasedDiscoveryDiscovers a schema for delimited text by checking values against a mapping of regular expressions to data types.Fields in com.pervasive.datarush.schema declared as TextRecordDiscoverer Modifier and Type Field Description static TextRecordDiscovererTextRecord. DEFAULT_AUTODISCOVERThe default schema discoverer used for reading delimited text.static TextRecordDiscovererTextRecord. TEXT_FIELD_DISCOVERA schema discoverer which treats all fields as raw text.Methods in com.pervasive.datarush.schema that return TextRecordDiscoverer Modifier and Type Method Description static TextRecordDiscovererTextRecord. extendDefault(List<TypePattern> additions)Creates a new discoverer which extends the default patterns.
-