Example usage for org.apache.commons.lang.builder ToStringStyle ToStringStyle

List of usage examples for org.apache.commons.lang.builder ToStringStyle ToStringStyle

Introduction

In this page you can find the example usage for org.apache.commons.lang.builder ToStringStyle ToStringStyle.

Prototype

protected ToStringStyle() 

Source Link

Document

Constructor.

Usage

From source file:com.iorga.webappwatcher.event.RetentionLogWritingEvent.java

@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, new ToStringStyle() {
        private static final long serialVersionUID = 1L;
        {/*from ww w  .j  a  va 2 s .  c o m*/
            this.setUseIdentityHashCode(false);
            this.setUseClassName(false);
        }
    });
}