Package com.saperion.common.lang.format
Interface FormatConstants
-
- All Known Implementing Classes:
CollectionFormatter
,ExceptionFormatter
,ParameterFormatter
public interface FormatConstants
Contains useful constants that are often used by string formatting methods.- Author:
- agz
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
LS
The system-dependent line separator (shortcut forSystem.getProperty("line.separator")
).static int
LS_LENGTH
The length ofLS
.static java.lang.String
NULL
The string used fornull
-values.static java.lang.String
TAB
The tabulator ("\t"
).static int
TAB_LENGTH
The 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
-
-