List of usage examples for org.apache.commons.lang.builder ToStringStyle subclass-usage
From source file org.jannocessor.util.TypeSpecificStyle.java
@SuppressWarnings("serial") public class TypeSpecificStyle extends ToStringStyle { public TypeSpecificStyle(Class<?> type) { this.setUseClassName(false); this.setUseIdentityHashCode(false);
From source file com.alibaba.otter.shared.common.utils.OtterToStringStyle.java
/**
* OtterToStringStyle
*
* <pre>
* Style?
* Person[name=John Doe,age=33,smoker=false ,time=2010-04-01 00:00:00]
From source file org.apache.apex.common.util.ToStringStyle.java
@Evolving /** * @since 3.7.0 */ public abstract class ToStringStyle extends org.apache.commons.lang.builder.ToStringStyle { public static final ToStringStyle SHORT_CLASS_NAME_STYLE = new ShortClassNameToStringStyle();
From source file org.gsafeproject.audit.domain.MyToStringBuilder.java
public class MyToStringBuilder extends ToStringStyle { private static final long serialVersionUID = 1L; private static MyToStringBuilder instance;
From source file edu.ksu.cis.indus.common.CustomToStringStyle.java
/**
* This class customizes the output of <code>toString()</code> by outputting the hashcode at the end instead of in the
* beginning.
*
* @author <a href="http://www.cis.ksu.edu/~rvprasad">Venkatesh Prasad Ranganath</a>
* @author $Author: rvprasad $
From source file dk.nsi.sdm4.ydelse.common.splunk.SplunkToStringStyle.java
public class SplunkToStringStyle extends ToStringStyle { private static final long serialVersionUID = 1L; public static final ToStringStyle SPLUNK_TO_STRING_STYLE = new SplunkToStringStyle();
From source file org.apache.cxf.jaxb.JAXBToStringStyle.java
class JAXBToStringStyleImpl extends ToStringStyle { private static final long serialVersionUID = -584903238590491314L; JAXBToStringStyleImpl() { super(); }