Example usage for org.apache.commons.lang.builder ToStringBuilder reflectionToString

List of usage examples for org.apache.commons.lang.builder ToStringBuilder reflectionToString

Introduction

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

Prototype

public static String reflectionToString(Object object) 

Source Link

Document

Forwards to ReflectionToStringBuilder.

Usage

From source file:oscar.oscarLab.ca.all.pageUtil.OruR01UploadForm.java

@Override
public String toString() {
    return (ToStringBuilder.reflectionToString(this));
}

From source file:stirling.lang.Objects.java

public static String toString(Object object) {
    return ToStringBuilder.reflectionToString(object);
}