Package org.eolang.tojos
Interface Mono
-
- All Known Implementing Classes:
Csv
public interface Mono
Collection of rows, read/write.- Since:
- 0.12
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Map<String,String>>
read()
Read them all.void
write(Collection<Map<String,String>> rows)
Write them all back.
-
-
-
Method Detail
-
read
Collection<Map<String,String>> read() throws IOException
Read them all.- Returns:
- The list of all lines
- Throws:
IOException
- If fails
-
write
void write(Collection<Map<String,String>> rows) throws IOException
Write them all back.- Parameters:
rows
- The list of all lines- Throws:
IOException
- If fails
-
-