| 1 19 20 package com.Ostermiller.util; 21 22 import java.io.*; 23 24 35 public interface CSVPrint { 36 37 46 public void changeDelimiter(char newDelimiter) throws BadDelimiterException; 47 48 57 public void changeQuote(char newQuote) throws BadQuoteException; 58 59 68 public void setAutoFlush(boolean autoFlush); 69 70 80 public boolean checkError(); 81 82 94 public void println(String value); 95 96 105 public void writeln(String value) throws IOException; 106 107 116 public void println(); 117 118 125 public void writeln() throws IOException; 126 127 140 public void println(String [] values); 141 142 152 public void writeln(String [] values) throws IOException; 153 154 167 public void println(String [][] values); 168 169 179 public void writeln(String [][] values) throws IOException; 180 181 193 public void printlnComment(String comment); 194 195 204 public void writelnComment(String comment) throws IOException; 205 206 218 public void print(String value); 219 220 229 public void write(String value) throws IOException; 230 231 236 public void flush() throws IOException; 237 238 243 public void close() throws IOException; 244 245 258 public void print(String [] values); 259 260 270 public void write(String [] values) throws IOException; 271 272 281 public void setAlwaysQuote(boolean alwaysQuote); 282 } 283 | Popular Tags |