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

com.realcomp.prime.conversion.MultiFieldConverter Maven / Gradle / Ivy

There is a newer version: 0.5.8
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy