Uses of Interface
com.pervasive.datarush.schema.TextSchema
-
Packages that use TextSchema Package Description com.pervasive.datarush.schema Provides an object model for capturing schema information used primarily by thetextfile
package. -
-
Uses of TextSchema in com.pervasive.datarush.schema
Subinterfaces of TextSchema in com.pervasive.datarush.schema Modifier and Type Interface Description interface
RecordTextSchema<T extends TextDataType>
A schema for text files containing a single record type.Classes in com.pervasive.datarush.schema that implement TextSchema Modifier and Type Class Description class
FixedWidthMultiRecordTextSchema
A schema for a text file containing records with different fixed-width formats.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.Methods in com.pervasive.datarush.schema that return TextSchema Modifier and Type Method Description static TextSchema
StructuredSchemaReader. load(String schemaFile)
Gets the text schema defined in the specified structured schema file.static TextSchema
StructuredSchemaReader. load(String schemaFile, TextTypes.StringConversion stringHandling)
Gets the text schema defined in the specified structured schema file, providing hints about how string valued fields should be interpreted.static TextSchema
StructuredSchemaReader. load(String schemaFile, TextTypes.StringConversion stringHandling, CharsetEncoding charEncoding)
Gets the text schema defined in the specified structured schema file, providing hints about how string valued fields should be interpreted and the character encoding of the file.static TextSchema
StructuredSchemaReader. loadString(String schemaString)
Gets the text schema defined in the specified structured schema string.TextSchema
StructuredSchemaReader. parse(String schemaResource)
Parse the given schema file.TextSchema
StructuredSchemaReader. parseString(String schemaString)
Parse the given schema string.
-