Class CommonWriterSettings<F extends Format>

    • Field Detail

      • headerWritingEnabled

        private java.lang.Boolean headerWritingEnabled
      • emptyValue

        private java.lang.String emptyValue
      • expandIncompleteRows

        private boolean expandIncompleteRows
      • columnReorderingEnabled

        private boolean columnReorderingEnabled
    • Constructor Detail

      • CommonWriterSettings

        public CommonWriterSettings()
    • Method Detail

      • getEmptyValue

        public java.lang.String getEmptyValue()
        Returns the String representation of an empty value (defaults to null)

        When writing, if the writer has an empty String to write to the output, the emptyValue is used instead of an empty string

        Returns:
        the String representation of an empty value
      • setEmptyValue

        public void setEmptyValue​(java.lang.String emptyValue)
        Sets the String representation of an empty value (defaults to null)

        If the writer has an empty String to write to the output, the emptyValue is used instead of an empty string

        Parameters:
        emptyValue - the String representation of an empty value
      • setRowWriterProcessor

        public void setRowWriterProcessor​(RowWriterProcessor<?> rowWriterProcessor)
        Defines a processor for input objects that converts them into a manageable format for writing.
        Parameters:
        rowWriterProcessor - the implementation of the interface RowWriterProcessor which processes input objects into a manageable format for writing.
        See Also:
        ObjectRowWriterProcessor, BeanWriterProcessor
      • isHeaderWritingEnabled

        public final boolean isHeaderWritingEnabled()
        Returns a flag indicating whether automatic writing of headers is enabled. If enabled, and headers are defined (or derived automatically if CommonSettings.isAutoConfigurationEnabled() evaluates to true), the writer will invoke the AbstractWriter.writeHeaders() method automatically. In this case, attempting to explicitly write the headers will result in a TextWritingException.

        Defaults to false

        Returns:
        returns true if automatic header writing is enabled, otherwise false.
      • setHeaderWritingEnabled

        public final void setHeaderWritingEnabled​(boolean headerWritingEnabled)
        Enables automatic writing of headers when they are available. If enabled, and headers are defined (or derived automatically if CommonSettings.isAutoConfigurationEnabled() evaluates to true), the writer will invoke the AbstractWriter.writeHeaders() method automatically. In this case, attempting to explicitly write the headers will result in a TextWritingException.

        Defaults to false

        Parameters:
        headerWritingEnabled - a flag to enable or disable automatic header writing.
      • getExpandIncompleteRows

        public final boolean getExpandIncompleteRows()
        Indicates whether the writer should expand records with less columns than the number of headers. For example, if the writer is using "A,B,C" as the headers, and the user provides a row with "V1,V2", then null will be introduced in column C, generating the output "V1,V2,null".

        Defaults to false

        Returns:
        a flag indicating whether records with less columns than the number of headers are to be expanded with nulls.
      • setExpandIncompleteRows

        public final void setExpandIncompleteRows​(boolean expandIncompleteRows)
        Defines whether the writer should expand records with less columns than the number of headers. For example, if the writer is using "A,B,C" as the headers, and the user provides a row with "V1,V2", then null will be introduced in column C, generating the output "V1,V2,null".

        Defaults to false

        Parameters:
        expandIncompleteRows - a flag indicating whether records with less columns than the number of headers are to be expanded with nulls.
      • addConfiguration

        protected void addConfiguration​(java.util.Map<java.lang.String,​java.lang.Object> out)
        Overrides:
        addConfiguration in class CommonSettings<F extends Format>
      • configureFromAnnotations

        protected void configureFromAnnotations​(java.lang.Class<?> beanClass)
        Configures the writer based on the annotations provided in a given class
        Parameters:
        beanClass - the classes whose annotations will be processed to derive configurations for writing.
      • clone

        protected CommonWriterSettings clone​(boolean clearInputSpecificSettings)
        Description copied from class: CommonSettings
        Clones this configuration object to reuse user-provided settings. Properties that are specific to a given input (such as header names and selection of fields) can be reset to their defaults if the clearInputSpecificSettings flag is set to true
        Overrides:
        clone in class CommonSettings<F extends Format>
        Parameters:
        clearInputSpecificSettings - flag indicating whether to clear settings that are likely to be associated with a given input.
        Returns:
        a copy of the configurations applied to the current instance.
      • isColumnReorderingEnabled

        public boolean isColumnReorderingEnabled()
        Indicates whether fields selected using the field selection methods (defined by the parent class CommonSettings) should be reordered (defaults to false).

        When disabled, each written record will contain values for all columns, in the order they are sent to the writer. Fields which were not selected will not be written but and the record will contain empty values.

        When enabled, each written record will contain values only for the selected columns. The values will be ordered according to the selection.

        Returns:
        true if the selected fields should be reordered when writing with field selection enabled, false otherwise
      • setColumnReorderingEnabled

        public void setColumnReorderingEnabled​(boolean columnReorderingEnabled)
        Defines whether fields selected using the field selection methods (defined by the parent class CommonSettings) should be reordered (defaults to false).

        When disabled, each written record will contain values for all columns, in the order they are sent to the writer. Fields which were not selected will not be written but and the record will contain empty values.

        When enabled, each written record will contain values only for the selected columns. The values will be ordered according to the selection.

        Parameters:
        columnReorderingEnabled - the flag indicating whether or not selected fields should be reordered and written by the writer