📄 csvfieldformatter.java
字号:
/*
* CSVFieldFormatter.java
*
* Copyright (C) 2005 Anupam Sengupta (anupamsg@users.sourceforge.net)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Version: $Revision: 1.1 $
*/
package net.sf.anupam.csv.formatters;
/**
* Main Interface for a CSV field formatter. This interface needs to be
* implemented by the actual formatter implementations in order to be recognized
* by the Framework.
* <p>
* Default implementations are available for common formatting requirements in
* the Framework, and are present in this package. See the package overview for
* details.
* </p>
*
* @author Anupam Sengupta
* @version $Revision: 1.1 $
* @since 1.5
* @see CSVFormatterFactory
*/
public interface CSVFieldFormatter {
/**
* Formats the specified CSV field value and returns the formatted result.
*
* @param value
* the CSV field value to format
* @return the formatted result
*/
String format(final String value);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -