Example usage for org.apache.commons.lang SystemUtils LINE_SEPARATOR

List of usage examples for org.apache.commons.lang SystemUtils LINE_SEPARATOR

Introduction

In this page you can find the example usage for org.apache.commons.lang SystemUtils LINE_SEPARATOR.

Prototype

String LINE_SEPARATOR

To view the source code for org.apache.commons.lang SystemUtils LINE_SEPARATOR.

Click Source Link

Document

The line.separator System Property.

Usage

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);
}