List of usage examples for org.apache.commons.lang.builder ReflectionToStringBuilder toStringExclude
public static String toStringExclude(Object object, String[] excludeFieldNames)
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"); }