br.com.tecsinapse.dataio.util.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tecsinapse-data-io Show documentation
Show all versions of tecsinapse-data-io Show documentation
A simple way to work with CSV, XLSX? and TXT files
The newest version!
/*
* Tecsinapse Data Input and Output
*
* License: GNU Lesser General Public License (LGPL), version 3 or later
* See the LICENSE file in the root directory or .
*/
package br.com.tecsinapse.dataio.util;
import java.util.Locale;
import lombok.experimental.UtilityClass;
@UtilityClass
public final class Constants {
public static final short DECIMAL_PRECISION = 10;
public static final Locale LOCALE_PT_BR = new Locale("pt", "BR");
public static final Locale LOCALE_ES_ES = new Locale("es", "ES");
public static final String MSG_IGNORED = "Ignored";
public static final String MIME_XLS = "application/vnd.ms-excel";
public static final String MIME_XLSM = "application/vnd.ms-excel.sheet.macroEnabled.12";
public static final String MIME_XLSX = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy