fr.boreal.io.csv.encoding.EncodedRLS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of integraal-io Show documentation
Show all versions of integraal-io Show documentation
Inputs and Outputs for integraal objects
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";
}
}