io.polaris.core.consts.StdConsts Maven / Gradle / Ivy
package io.polaris.core.consts;
/**
* @author Qt
* @since 1.8
*/
public interface StdConsts {
Object[] EMPTY_ARRAY = new Object[0];
String[] EMPTY_STRING_ARRAY = new String[0];
String UTF_8 = "UTF-8";
String STANDARD_DELIMITER = SymbolConsts.COMMA;
String NULL = "null";
String UNKNOWN = "unknown";
String ERROR = "error";
String VALUE = "value";
}