Interface AbstractReader<T>

    • Method Detail

      • read

        T read​(File f)
        throws IOException
        Reads f to translate its contents to one of the immutable structures of T. Usually this involves reading arrays and collections and pasting their data into existing structural elements. This does not change the internal structure of the object.
        Parameters:
        f - a file which has readable content
        Returns:
        a T object created by reading all information from f.
        Throws:
        IOException