List of usage examples for org.apache.commons.lang SystemUtils LINE_SEPARATOR
String LINE_SEPARATOR
To view the source code for org.apache.commons.lang SystemUtils LINE_SEPARATOR.
Click Source Link
The line.separator
System Property.
From source file:utilities.internal.CustomPrintStyle.java
CustomPrintStyle() { super();/* ww w . j av a 2 s . co m*/ this.setUseShortClassName(false); this.setUseIdentityHashCode(false); this.setArraySeparator(", "); this.setContentStart("{"); this.setFieldSeparator(SystemUtils.LINE_SEPARATOR + "\t"); this.setFieldSeparatorAtStart(true); this.setContentEnd(SystemUtils.LINE_SEPARATOR + "}"); this.setArrayContentDetail(true); this.setDefaultFullDetail(true); }