com.realcomp.prime.conversion.MultiFieldConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prime Show documentation
Show all versions of prime Show documentation
Data transformation tool
package com.realcomp.prime.conversion;
import com.realcomp.prime.DataType;
import com.realcomp.prime.MultiFieldOperation;
import com.realcomp.prime.record.Record;
import java.util.List;
public interface MultiFieldConverter extends MultiFieldOperation{
/**
* @param value not null
* @return the converted value, not null
*/
Object convert(Object value, Record record) throws ConversionException;
/**
*
* @return List of DataTypes supported by this converter.
*/
List getSupportedTypes();
}