Uses of Interface
com.pervasive.datarush.schema.RecordTextSchema
-
Packages that use RecordTextSchema Package Description com.pervasive.datarush.operators.io.mdf com.pervasive.datarush.operators.io.textfile Provides operators for reading and writing text data.com.pervasive.datarush.operators.join Provides operators for joining together two data sets into a single one.com.pervasive.datarush.operators.record Provides operators for manipulating record structure.com.pervasive.datarush.operators.testutils com.pervasive.datarush.schema Provides an object model for capturing schema information used primarily by thetextfile
package. -
-
Uses of RecordTextSchema in com.pervasive.datarush.operators.io.mdf
Methods in com.pervasive.datarush.operators.io.mdf that return RecordTextSchema Modifier and Type Method Description RecordTextSchema<?>
ReadMDF. getRecordSchema(FileClient fileClient)
Constructors in com.pervasive.datarush.operators.io.mdf with parameters of type RecordTextSchema Constructor Description MDFFormat(MDFUtil.MDFVersion version, int dataGroup, long recordId, boolean convertRaw, ReadMDF.ExtractionMode runMode, RecordTextSchema<?> schema)
MDFFormat(MDFUtil.MDFVersion version, int dataGroup, long recordId, boolean convertRaw, ReadMDF.ExtractionMode runMode, RecordTextSchema<?> schema, FileMetadata metadata, boolean splittable)
-
Uses of RecordTextSchema in com.pervasive.datarush.operators.io.textfile
Fields in com.pervasive.datarush.operators.io.textfile declared as RecordTextSchema Modifier and Type Field Description protected RecordTextSchema<?>
CLFLogFormat. schema
protected RecordTextSchema<?>
CombinedLogFormat. schema
protected RecordTextSchema<?>
ELFLogFormat. schema
protected RecordTextSchema<?>
GenericLogFormat. schema
protected RecordTextSchema<?>
GlassfishLogFormat. schema
protected RecordTextSchema<?>
Log4jLogFormat. schema
protected RecordTextSchema<?>
SyslogLogFormat. schema
Methods in com.pervasive.datarush.operators.io.textfile that return RecordTextSchema Modifier and Type Method Description RecordTextSchema<?>
ReadDelimitedText. discoverSchema(FileClient ctx)
Run schema discovery using current configuration.RecordTextSchema<?>
ReadJSON. discoverSchema(FileClient ctx)
Run schema discovery using current configuration.abstract RecordTextSchema<?>
AbstractRegexLogFormat. getSchema()
Gets the record schema of the source.RecordTextSchema<?>
CLFLogFormat. getSchema()
RecordTextSchema<?>
CombinedLogFormat. getSchema()
RecordTextSchema<?>
ELFLogFormat. getSchema()
Gets the record schema of the source.RecordTextSchema<?>
GenericLogFormat. getSchema()
RecordTextSchema<?>
GlassfishLogFormat. getSchema()
RecordTextSchema<?>
Log4jLogFormat. getSchema()
RecordTextSchema<?>
ParseTextFields. getSchema()
Gets the record schema to use for parsing.RecordTextSchema<?>
ReadDelimitedText. getSchema()
Gets the record schema of the delimited text source.RecordTextSchema<?>
ReadJSON. getSchema()
Gets the record schema of the JSON text source.RecordTextSchema<?>
SyslogLogFormat. getSchema()
RecordTextSchema<?>
WriteDelimitedText. getSchema()
Gets the record schema for delimited text source.Methods in com.pervasive.datarush.operators.io.textfile with parameters of type RecordTextSchema Modifier and Type Method Description void
GenericLogFormat. setSchema(RecordTextSchema<?> schema)
Sets the record schema of the source.void
ParseTextFields. setSchema(RecordTextSchema<?> schema)
Sets the record schema to use for parsing.void
ReadDelimitedText. setSchema(RecordTextSchema<?> schema)
Sets the record schema expected in the delimited text source.void
ReadJSON. setSchema(RecordTextSchema<?> schema)
Sets the record schema expected in the JSON text source.void
WriteDelimitedText. setSchema(RecordTextSchema<?> schema)
Sets the record schema for the delimited text source.Constructors in com.pervasive.datarush.operators.io.textfile with parameters of type RecordTextSchema Constructor Description DelimitedTextFormat(RecordTextSchema<?> schema, FieldDelimiterSettings delimiters, CharsetEncoding encoding)
Create a data format for accessing delimited text data.DelimitedTextFormat(RecordTextSchema<?> schema, FieldDelimiterSettings delimiters, CharsetEncoding encoding, FileMetadata metadata)
Create a data format for accessing delimited text data.DelimitedTextFormat(RecordTextSchema<?> schema, FieldDelimiterSettings delimiters, CharsetEncoding encoding, FileMetadata metadata, boolean hasHeader, String lineComment, int skipCount)
Create a data format for accessing delimited text data.JSONFormat(RecordTextSchema<?> schema, boolean[] arguments)
JSONFormat(RecordTextSchema<?> schema, boolean[] arguments, CharsetEncoding charsetEncoding)
JSONFormat(RecordTextSchema<?> schema, boolean[] arguments, CharsetEncoding charsetEncoding, boolean multiline)
JSONFormat(RecordTextSchema<?> schema, boolean allowComments, boolean allowUnquotedFieldNames, boolean allowSingleQuotes, boolean allowUnquotedControlChars, boolean allowBackslashEscapingAny, boolean allowNumericLeadingZeros, boolean allowNonNumericNumbers, CharsetEncoding charsetEncoding, boolean multilineFormat)
ParseTextFields(RecordTextSchema<?> schema)
Defines a parser using the specified schema. -
Uses of RecordTextSchema in com.pervasive.datarush.operators.join
Methods in com.pervasive.datarush.operators.join that return RecordTextSchema Modifier and Type Method Description RecordTextSchema<?>
UnionAll. getSchema()
Gets the target record schema defining the output type.Methods in com.pervasive.datarush.operators.join with parameters of type RecordTextSchema Modifier and Type Method Description void
UnionAll. setSchema(RecordTextSchema<?> schema)
Sets the optional target output schema.Constructors in com.pervasive.datarush.operators.join with parameters of type RecordTextSchema Constructor Description UnionAll(RecordTextSchema<?> targetSchema)
-
Uses of RecordTextSchema in com.pervasive.datarush.operators.record
Methods in com.pervasive.datarush.operators.record with parameters of type RecordTextSchema Modifier and Type Method Description void
SelectFields. setSelectionSchema(RecordTextSchema<?> schema)
Sets the schema with the names of the fields that will be kept.Constructors in com.pervasive.datarush.operators.record with parameters of type RecordTextSchema Constructor Description SelectFields(RecordTextSchema<?> schema)
Keeps the specified fields from the input schema. -
Uses of RecordTextSchema in com.pervasive.datarush.operators.testutils
Methods in com.pervasive.datarush.operators.testutils that return RecordTextSchema Modifier and Type Method Description RecordTextSchema<?>
SimulatePartitions. getSchema()
Methods in com.pervasive.datarush.operators.testutils with parameters of type RecordTextSchema Modifier and Type Method Description void
SimulatePartitions. setSchema(RecordTextSchema<?> schema)
Constructors in com.pervasive.datarush.operators.testutils with parameters of type RecordTextSchema Constructor Description SimulatePartitions(String path, RecordTextSchema<?> schema)
-
Uses of RecordTextSchema in com.pervasive.datarush.schema
Classes in com.pervasive.datarush.schema that implement RecordTextSchema Modifier and Type Class Description class
FixedWidthTextRecord
A definition of a fixed-width record in a text file.class
TextRecord
A definition of a variable-width record type in a text file.
-