org.simpleflatmapper.util.ErrorDoc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-util Show documentation
Show all versions of sfm-util Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
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();
}
}