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

org.simpleflatmapper.util.ErrorDoc Maven / Gradle / Ivy

Go to download

Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.

There is a newer version: 9.0.2
Show newest version
package org.simpleflatmapper.util;

public enum ErrorDoc {

    /*
     * CS : Constant Source, ie ResultSet to T 
     * CT : Constant Target, ie T to PreparedStatement
     * FM : Field Mapper
     */
    CSFM_GETTER_NOT_FOUND, // could not found a way to get the data from the source 
    PROPERTY_NOT_FOUND, 
    CTFM_GETTER_NOT_FOUND, // could not found a way to get the data from the source T
    CTFM_SETTER_NOT_FOUND; // could not found a way to set the data to the target

    public static final String ERROR_URL = "https://github.com/arnaudroger/SimpleFlatMapper/wiki/Errors_";


    public String toUrl() {
        return ERROR_URL + name();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy