Java Code Examples for org.apache.commons.lang.builder.ToStringBuilder#reflectionToString()

The following examples show how to use org.apache.commons.lang.builder.ToStringBuilder#reflectionToString() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DeviceViewItem.java    From multi-engine with Apache License 2.0 4 votes vote down vote up
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
 
Example 2
Source File: TridentTopologyBuilder.java    From jstorm with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
 
Example 3
Source File: NameParser.java    From docker-java with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SIMPLE_STYLE);
}
 
Example 4
Source File: DownloadFile.java    From sinavi-jfw with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
 
Example 5
Source File: Record.java    From yugong with GNU General Public License v2.0 4 votes vote down vote up
public String toString() {
    return ToStringBuilder.reflectionToString(this, YuGongToStringStyle.DEFAULT_STYLE);
}
 
Example 6
Source File: DocumentExtractDefinition.java    From hbase-indexer with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
 
Example 7
Source File: DataServerConfig.java    From sofa-registry with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
 
Example 8
Source File: LogoutRequest.java    From PE-HFT-Java with GNU General Public License v3.0 4 votes vote down vote up
@Override
public String toString() {
	return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
 
Example 9
Source File: OrderFeedEntry.java    From microservice-istio with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
	return ToStringBuilder.reflectionToString(this);
}
 
Example 10
Source File: BaseDao.java    From training with MIT License 4 votes vote down vote up
@Override
public String toString() {
	return ToStringBuilder.reflectionToString(this);
}
 
Example 11
Source File: ServerEnvironment.java    From jenkins-deployment-dashboard-plugin with MIT License 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this);
}
 
Example 12
Source File: OperateInfo.java    From boubei-tss with Apache License 2.0 4 votes vote down vote up
public String toString() {
	return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
 
Example 13
Source File: CriteriaKualiDecimalValue.java    From rice with Educational Community License v2.0 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this);
}
 
Example 14
Source File: HeaderPacket.java    From canal-1.1.3 with Apache License 2.0 4 votes vote down vote up
public String toString() {
    return ToStringBuilder.reflectionToString(this, CanalToStringStyle.DEFAULT_STYLE);
}
 
Example 15
Source File: Customer.java    From microservice-consul with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
	return ToStringBuilder.reflectionToString(this);
}
 
Example 16
Source File: InvoiceLine.java    From microservice-atom with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
	return ToStringBuilder.reflectionToString(this);
}
 
Example 17
Source File: ResourceWorkerSlot.java    From jstorm with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
 
Example 18
Source File: CriteriaIntegerValue.java    From rice with Educational Community License v2.0 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this);
}
 
Example 19
Source File: PipeRunResult.java    From iaf with Apache License 2.0 4 votes vote down vote up
@Override
public String toString() {
	return ToStringBuilder.reflectionToString(this);
}
 
Example 20
Source File: CriteriaDecimalValue.java    From rice with Educational Community License v2.0 4 votes vote down vote up
@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this);
}