it.firegloves.mempoi.styles.StandardDataFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mempoi Show documentation
Show all versions of mempoi Show documentation
A library to simplify export from database to Excel files using Apache POI
/**
* enum containing the default data type formats
*/
package it.firegloves.mempoi.styles;
public enum StandardDataFormat {
STANDARD_DATE_FORMAT("yyyy/mm/dd"),
STANDARD_DATETIME_FORMAT("yyyy/mm/dd h:mm"),
STANDARD_NUMBER_FORMAT("#,##0.00");
private String format;
StandardDataFormat(String format) {
this.format = format;
}
public String getFormat() {
return format;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy