Example usage for org.apache.commons.lang.builder ReflectionToStringBuilder toStringExclude

List of usage examples for org.apache.commons.lang.builder ReflectionToStringBuilder toStringExclude

Introduction

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

Prototype

public static String toStringExclude(Object object, String[] excludeFieldNames) 

Source Link

Document

Builds a String for a toString method excluding the given field names.

Usage

From source file:edu.utah.further.ds.further.model.impl.domain.Encounter.java

@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[] { "orders", "observations" });
}

From source file:edu.utah.further.ds.further.model.impl.domain.Order.java

@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[] { "observations" });
}

From source file:edu.utah.further.ds.further.model.impl.domain.Person.java

@Override
public String toString() {
    return ReflectionToStringBuilder
            .toStringExclude(this,
                    new String[] { "orders", "providers", "observations", "encounters", "locations" })
            .toString();/*from  w w  w . j av a2 s  .co  m*/
}

From source file:org.ngrinder.model.PerfTest.java

@Override
public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, "tags");
}