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

de.sekmi.histream.etl.config.StringColumn Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package de.sekmi.histream.etl.config;

import javax.xml.bind.annotation.XmlType;

import de.sekmi.histream.etl.ParseException;

@XmlType(name="string")
public class StringColumn extends Column{

	public StringColumn(String name) {
		super(name);
	}
	protected StringColumn(){
		super();
	}
	@Override
	public String valueOf(Object input) throws ParseException {
		return input.toString();
	}
	@Override
	public String valueFromString(String input) throws ParseException {
		return input; // nothing to do
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy