Class CsvInputFormat<OUT>

    • Field Detail

      • parsedValues

        protected transient Object[] parsedValues
        Deprecated.
    • Constructor Detail

      • CsvInputFormat

        protected CsvInputFormat​(Path filePath)
        Deprecated.
    • Method Detail

      • readRecord

        public OUT readRecord​(OUT reuse,
                              byte[] bytes,
                              int offset,
                              int numBytes)
                       throws IOException
        Deprecated.
        Description copied from class: DelimitedInputFormat
        This function parses the given byte array which represents a serialized record. The function returns a valid record or throws an IOException.
        Specified by:
        readRecord in class DelimitedInputFormat<OUT>
        Parameters:
        reuse - An optionally reusable object.
        bytes - Binary data of serialized records.
        offset - The offset where to start to read the record data.
        numBytes - The number of bytes that can be read starting at the offset position.
        Returns:
        Returns the read record if it was successfully deserialized.
        Throws:
        IOException - if the record could not be read.
      • fillRecord

        protected abstract OUT fillRecord​(OUT reuse,
                                          Object[] parsedValues)
        Deprecated.
      • getFieldTypes

        public Class<?>[] getFieldTypes()
        Deprecated.
      • createDefaultMask

        protected static boolean[] createDefaultMask​(int size)
        Deprecated.
      • toBooleanMask

        protected static boolean[] toBooleanMask​(int[] sourceFieldIndices)
        Deprecated.