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

getl.dbf.proc.ReadString.groovy Maven / Gradle / Ivy

package getl.dbf.proc

import com.linuxense.javadbf.DBFRow
import getl.dbf.sub.ReadProcessor
import groovy.transform.InheritConstructors

/**
 * Convert string field by row with DBF file to destination row
 * @author Alexsey Konstantinov
 */
@InheritConstructors
class ReadString extends ReadProcessor {
    @Override
    protected Object readValue(DBFRow source) {
        source.getString(sourceFieldName)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy