All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.boreal.io.csv.encoding.EncodedRLS Maven / Gradle / Ivy

The newest version!
package fr.boreal.io.csv.encoding;

/**
 * @author Florent Tornil
 * 

* The encoded RLS is a triple with : * - The RLS file linking to the encoded CSVs * - The dictionary file * - The repare file (if using an optimistic encoding) */ public record EncodedRLS(String rlsFile, String dictionaryFile, String repareFile) { @Override public String toString() { return "RLS : " + this.rlsFile + "\n" + "Dictionary : " + this.dictionaryFile + "\n" + "Repare : " + this.repareFile + "\n"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy