|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SVParser.java | - | - | - | - |
|
1 |
/*
|
|
2 |
* brownies and its relative products are published under the terms
|
|
3 |
* of the Apache Software License.
|
|
4 |
*
|
|
5 |
* Created on 2004/05/20 14:42:35
|
|
6 |
*/
|
|
7 |
package org.asyrinx.brownie.core.csv;
|
|
8 |
|
|
9 |
import java.io.IOException;
|
|
10 |
import java.io.Reader;
|
|
11 |
|
|
12 |
/**
|
|
13 |
* @author akima
|
|
14 |
*/
|
|
15 |
public interface SVParser { |
|
16 |
|
|
17 |
public abstract void parse(Reader reader) throws IOException; |
|
18 |
|
|
19 |
public void addListener(SVParserListener listener); |
|
20 |
|
|
21 |
public void removeListener(SVParserListener listener); |
|
22 |
|
|
23 |
/** 引用符: char型の空文字 */
|
|
24 |
public static final char QUOTE_EMPTY = '\u0000'; |
|
25 |
|
|
26 |
/** 引用符: char型のダブルクォーテーション */
|
|
27 |
public static final char QUOTE_DOUBLE = '"'; |
|
28 |
|
|
29 |
/** 引用符: char型のシングルクォーテーション */
|
|
30 |
public static final char QUOTE_SINGLE = '\''; |
|
31 |
|
|
32 |
/** 区切り文字: カンマ */
|
|
33 |
public static final char DELIM_COMMA = ','; |
|
34 |
|
|
35 |
/** 区切り文字: タブ */
|
|
36 |
public static final char DELIM_TAB = '\t'; |
|
37 |
|
|
38 |
} |
|