java.lang.Object
com.pervasive.datarush.schema.FixedWidthTextRecord
- All Implemented Interfaces:
RecordTextSchema<FixedSizeTextType>,TextSchema
A definition of a fixed-width record in a text file.
As fields as fixed-size, structured text file readers and writers
can identify fields based on their position within the record.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDefines an empty fixed-width record.FixedWidthTextRecord(TextConversionDefaults defaults) Defines an empty fixed-width record with the specified text conversion behavior.FixedWidthTextRecord(TextConversionDefaults defaults, Map<String, FixedSizeTextType> fieldTypes) Defines a record with the specified text conversion behavior and fields. -
Method Summary
Modifier and TypeMethodDescriptionfinal TokenFormattercreateFieldFormatter(String fieldName) Creates a new formatter for values of the specified field.final TokenParsercreateFieldParser(String fieldName) Creates a new parser for values of the specified field.final voiddefineField(String name, FixedSizeTextType type) Defines a new field in the record with the specified name and type.final voiddefineField(String name, FixedSizeTextType type, FieldDomain domain) Defines a new field in the record with the specified name and type.final TextConversionDefaultsGets the default conversion behaviors for fields in the schema which do not explicitly define any.final intGets the number of fields defined in the record.final FieldDomaingetFieldDomain(String name) Gets the domain of the specified field in the record.Gets the names of the fields defined in the record.intgetFieldOffset(String name) Gets the offset the the specified field from the start of the record.intgetFieldSize(String name) Gets the size of the specified field.final FixedSizeTextTypegetFieldType(String name) Gets the type of the specified fields in the record.intThe defined length of the record.final RecordTokenTypeGets the type of the token representation of the text record.final booleanisFieldDefined(String name) Indicates whether a field with the given name is already defined.final voidsetFieldType(String name, FixedSizeTextType newType) Modifies the value conversion scheme for an existing field.
-
Field Details
-
textFieldsByName
-
-
Constructor Details
-
FixedWidthTextRecord
public FixedWidthTextRecord()Defines an empty fixed-width record. Default text conversion behavior is used.An empty record definition is not meaningful; it is expected that at least one field will be defined before the schema is used. The length of the record is determined from the size of the fields.
- See Also:
-
FixedWidthTextRecord
Defines an empty fixed-width record with the specified text conversion behavior.An empty record definition is not meaningful; it is expected that at least one field will be defined before the schema is used. The length of the record is determined from the size of the fields.
- Parameters:
defaults- text conversion behavior to apply by default to the schema
-
FixedWidthTextRecord
public FixedWidthTextRecord(TextConversionDefaults defaults, Map<String, FixedSizeTextType> fieldTypes) Defines a record with the specified text conversion behavior and fields. The field order is the iteration order of the provided field mapping.- Parameters:
defaults- default text conversion behavior for the schemafieldTypes- the defined fields in the record schema default to the schema
-
-
Method Details
-
getRecordLength
public int getRecordLength()The defined length of the record.- Returns:
- the length of the record in characters
-
getTextFields
-
getFieldSize
Gets the size of the specified field.- Parameters:
name- the field for which to report the size. This field must exist in the schema.- Returns:
- the defined size of the field
-
getFieldOffset
Gets the offset the the specified field from the start of the record.- Parameters:
name- the field for which to calculate the offset. This field must exist in the schema.- Returns:
- the offset from the start of the record, measured in characters
-
getDefaults
Description copied from interface:RecordTextSchemaGets the default conversion behaviors for fields in the schema which do not explicitly define any. These include settings such as the null indicator for values and whether string values are trimmed or preserved as is.- Specified by:
getDefaultsin interfaceRecordTextSchema<T extends TextDataType>- Returns:
- the default behavior for the schema
-
getTokenType
Description copied from interface:RecordTextSchemaGets the type of the token representation of the text record. The fields of the resulting type are in the same order and have the same name as the fields in the schema.- Specified by:
getTokenTypein interfaceRecordTextSchema<T extends TextDataType>- Returns:
- the token type representing the schema
-
getFieldCount
public final int getFieldCount()Description copied from interface:RecordTextSchemaGets the number of fields defined in the record.- Specified by:
getFieldCountin interfaceRecordTextSchema<T extends TextDataType>- Returns:
- the number of defined fields
-
getFieldNames
Description copied from interface:RecordTextSchemaGets the names of the fields defined in the record. The names are returned in the order they were defined.- Specified by:
getFieldNamesin interfaceRecordTextSchema<T extends TextDataType>- Returns:
- a list of defined field names
-
isFieldDefined
Description copied from interface:RecordTextSchemaIndicates whether a field with the given name is already defined.- Specified by:
isFieldDefinedin interfaceRecordTextSchema<T extends TextDataType>- Parameters:
name- the field to check- Returns:
trueif a field with the name is defined in the schema,falseotherwise.
-
defineField
Defines a new field in the record with the specified name and type.- Parameters:
name- the name associated with the field. The name must be unique amongst all defined fields.type- specifies how to convert between text and token values
-
defineField
Defines a new field in the record with the specified name and type.- Parameters:
name- the name associated with the field. The name must be unique amongst all defined fields.type- specifies how to convert between text and token values
-
getFieldType
Description copied from interface:RecordTextSchemaGets the type of the specified fields in the record. The names are returned in the order they were defined.- Specified by:
getFieldTypein interfaceRecordTextSchema<T extends TextDataType>- Parameters:
name- the field for which to fetch the type- Returns:
- the text type of the named field
-
getFieldDomain
Description copied from interface:RecordTextSchemaGets the domain of the specified field in the record.- Specified by:
getFieldDomainin interfaceRecordTextSchema<T extends TextDataType>- Parameters:
name- the field for which to fetch the domain- Returns:
- the domain of the named field
-
setFieldType
Modifies the value conversion scheme for an existing field.- Parameters:
name- the field to modify. This field must exist in the schema.newType- specifies how to convert between text and token values
-
createFieldParser
Description copied from interface:RecordTextSchemaCreates a new parser for values of the specified field.- Specified by:
createFieldParserin interfaceRecordTextSchema<T extends TextDataType>- Parameters:
fieldName- the field for which to obtain a parser- Returns:
- a parser for converting text values to token values for the field
-
createFieldFormatter
Description copied from interface:RecordTextSchemaCreates a new formatter for values of the specified field.- Specified by:
createFieldFormatterin interfaceRecordTextSchema<T extends TextDataType>- Parameters:
fieldName- the field for which to obtain a formatter- Returns:
- a formatter for converting token values to text values for the field
-