All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.jasperreports.export.SimpleCsvExporterConfiguration Maven / Gradle / Ivy

/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2019 TIBCO Software Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see .
 */
package net.sf.jasperreports.export;


/**
 * @author Teodor Danciu ([email protected])
 */
public class SimpleCsvExporterConfiguration extends SimpleExporterConfiguration implements CsvExporterConfiguration
{
	private String fieldDelimiter;	
	private String fieldEnclosure;	
	private String recordDelimiter;	
	private Boolean forceFieldEnclosure;	
	private Boolean isWriteBOM;	
	private Boolean escapeFormula;	

	/**
	 * 
	 */
	public SimpleCsvExporterConfiguration()
	{
	}
	
	@Override
	public String getFieldDelimiter()
	{
		return fieldDelimiter;
	}
	
	/**
	 * 
	 */
	public void setFieldDelimiter(String fieldDelimiter)
	{
		this.fieldDelimiter = fieldDelimiter;
	}
	
	@Override
	public String getFieldEnclosure()
	{
		return fieldEnclosure;
	}
	
	/**
	 * 
	 */
	public void setFieldEnclosure(String fieldEnclosure)
	{
		this.fieldEnclosure = fieldEnclosure;
	}
	
	@Override
	public String getRecordDelimiter()
	{
		return recordDelimiter;
	}
	
	/**
	 * 
	 */
	public void setRecordDelimiter(String recordDelimiter)
	{
		this.recordDelimiter = recordDelimiter;
	}
	
	@Override
	public Boolean isWriteBOM()
	{
		return isWriteBOM;
	}
	
	/**
	 * 
	 */
	public void setWriteBOM(Boolean isWriteBOM)
	{
		this.isWriteBOM = isWriteBOM;
	}
	
	@Override
	public Boolean getForceFieldEnclosure()
	{
		return forceFieldEnclosure;
	}
	
	/**
	 * 
	 */
	public void setForceFieldEnclosure(Boolean forceFieldEnclosure)
	{
		this.forceFieldEnclosure = forceFieldEnclosure;
	}
	
	@Override
	public Boolean getEscapeFormula()
	{
		return escapeFormula;
	}
	
	/**
	 * 
	 */
	public void setEscapeFormula(Boolean escapeFormula)
	{
		this.escapeFormula = escapeFormula;
	}	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy