Interface Mapper

    • Method Detail

      • getString

        String getString​(FlatFileParser.Data data)
        Get the value for the line of data as a string.
        Parameters:
        data - The line of data
        Returns:
        A string value
        Since:
        3.15
      • getInt

        Integer getInt​(FlatFileParser.Data data)
        Get the value for the line of data as an integer.
        Parameters:
        data - The line of data
        Returns:
        The value as an integer
        Throws:
        NumberFormatException - If the value can't be parsed as an integer
      • getLong

        Long getLong​(FlatFileParser.Data data)
        Get the value for the line of data as a long.
        Parameters:
        data - The line of data
        Returns:
        The value as an long
        Throws:
        NumberFormatException - If the value can't be parsed as an long
        Since:
        3.15
      • getFloat

        Float getFloat​(FlatFileParser.Data data)
        Get the value for the line of data as a float.
        Parameters:
        data - The line of data
        Returns:
        The value as a float
        Throws:
        NumberFormatException - If the value can't be parsed as a float
      • getDouble

        Double getDouble​(FlatFileParser.Data data)
        Get the value for the line of data as a double.
        Parameters:
        data - The line of data
        Returns:
        The value as a double
        Throws:
        NumberFormatException - If the value can't be parsed as a double
        Since:
        3.15
      • getDate

        Date getDate​(FlatFileParser.Data data)
        Get the value for the line of data as a date.
        Parameters:
        data - The line of data
        Returns:
        The value as a date
        Since:
        3.15