org.nerd4j.csv.conf.mapping.CSVHandlerConf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nerd4j-csv Show documentation
Show all versions of nerd4j-csv Show documentation
CSV manipulation library.
/*
* #%L
* Nerd4j CSV
* %%
* Copyright (C) 2013 Nerd4j
* %%
* This program 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.
*
* 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 Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
package org.nerd4j.csv.conf.mapping;
import java.util.HashMap;
import java.util.Map;
/**
* Representation of a configuration
* for objects able to handle CSV.
*
* @author Nerd4j Team
*/
public class CSVHandlerConf implements Cloneable
{
/** The name of the reader instance. */
private String name;
/** The model binder configuration. */
private CSVModelBinderConf modelBinder;
/** Map of configured columns. */
private Map columns;
/**
* Default constructor.
*
*/
public CSVHandlerConf()
{
super();
this.name = null;
this.modelBinder = new CSVModelBinderConf();
this.columns = new HashMap();
}
/* ******************* */
/* GETTERS & SETTERS */
/* ******************* */
public String getName()
{
return name;
}
public void setName( String name )
{
this.name = name;
}
public Map getColumns()
{
return columns;
}
public CSVModelBinderConf getModelBinder()
{
return modelBinder;
}
/* ******************* */
/* INTERFACE METHODS */
/* ******************* */
/**
* {@inheritDoc}
*/
@Override
public CSVHandlerConf clone() throws CloneNotSupportedException
{
final CSVHandlerConf clone = (CSVHandlerConf) super.clone();
clone.modelBinder = this.modelBinder != null ? this.modelBinder.clone() : null;
if( this.columns != null )
{
clone.columns = new HashMap( this.columns.size() );
for( Map.Entry entry : this.columns.entrySet() )
clone.columns.put( entry.getKey(), entry.getValue() != null ? entry.getValue().clone() : null );
}
return clone;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy