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

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

Introduction

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

Prototype

public static String toStringExclude(final Object object, final String... excludeFieldNames) 

Source Link

Document

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

Usage

From source file:cn.ifengkou.hestia.model.MessageRequest.java

public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[] { "messageType", "message" });
}

From source file:com.newlandframework.avatarmq.msg.Message.java

public String toString() {
    ReflectionToStringBuilder.setDefaultStyle(ToStringStyle.SHORT_PREFIX_STYLE);
    return ReflectionToStringBuilder.toStringExclude(this, new String[] { "body" });
}

From source file:com.newlandframework.rpc.model.MessageRequest.java

public String toString() {
    return ReflectionToStringBuilder.toStringExclude(this, new String[] { "typeParameters", "parametersVal" });
}

From source file:gov.ca.cwds.cals.persistence.model.calsns.tracking.Tracking.java

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

From source file:org.apache.drill.exec.physical.impl.aggregate.HashAggTemplate.java

@Override
public String toString() {
    // The fields are excluded because they are passed from HashAggBatch
    String[] excludedFields = new String[] { "baseHashTable", "incoming", "outgoing", "context", "oContext",
            "allocator", "htables", "newIncoming" };
    return ReflectionToStringBuilder.toStringExclude(this, excludedFields);
}

From source file:org.ecloudmanager.jeecore.domain.DomainObject.java

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