Package com.saperion.common.lang.format
Interface FormatConstants
-
- All Known Implementing Classes:
CollectionFormatter,ExceptionFormatter,ParameterFormatter
public interface FormatConstantsContains useful constants that are often used by string formatting methods.- Author:
- agz
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringLSThe system-dependent line separator (shortcut forSystem.getProperty("line.separator")).static intLS_LENGTHThe length ofLS.static java.lang.StringNULLThe string used fornull-values.static java.lang.StringTABThe tabulator ("\t").static intTAB_LENGTHThe length ofTAB.
-
-
-
Field Detail
-
LS
static final java.lang.String LS
The system-dependent line separator (shortcut forSystem.getProperty("line.separator")).
-
LS_LENGTH
static final int LS_LENGTH
The length ofLS.
-
TAB
static final java.lang.String TAB
The tabulator ("\t").- See Also:
- Constant Field Values
-
TAB_LENGTH
static final int TAB_LENGTH
The length ofTAB.
-
NULL
static final java.lang.String NULL
The string used fornull-values.- See Also:
- Constant Field Values
-
-