Example usage for org.apache.commons.lang3.builder ToStringStyle NO_CLASS_NAME_STYLE

List of usage examples for org.apache.commons.lang3.builder ToStringStyle NO_CLASS_NAME_STYLE

Introduction

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

Prototype

ToStringStyle NO_CLASS_NAME_STYLE

To view the source code for org.apache.commons.lang3.builder ToStringStyle NO_CLASS_NAME_STYLE.

Click Source Link

Document

The no class name toString style.

Usage

From source file:ubicrypt.core.watch.PathEvent.java

@Override
public String toString() {
    return new ToStringBuilder(this, ToStringStyle.NO_CLASS_NAME_STYLE).append("event", event)
            .append("path", path).toString();
}