Example usage for org.apache.commons.lang3.builder ToStringStyle subclass-usage

List of usage examples for org.apache.commons.lang3.builder ToStringStyle subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.lang3.builder ToStringStyle subclass-usage.

Usage

From source file com.mirth.connect.model.CalendarToStringStyle.java

public class CalendarToStringStyle extends ToStringStyle {
    public CalendarToStringStyle() {
        super();
        this.setUseShortClassName(true);
        this.setUseIdentityHashCode(false);
    }

From source file com.mgmtp.jfunk.web.util.ShortToStringStyle.java

/**
 * @author rnaegele
 */
public class ShortToStringStyle extends ToStringStyle {

    public static final ToStringStyle INSTANCE = new ShortToStringStyle();

From source file com.mgmtp.jfunk.web.util.LoggingToStringStyle.java

/**
 * @author rnaegele
 */
public final class LoggingToStringStyle extends ToStringStyle {

    public static final LoggingToStringStyle INSTANCE = new LoggingToStringStyle();

From source file com.github.woki.payments.adyen.support.ToStringStyle.java

/**
 * @author Willian Oki <willian.oki@gmail.com>
 */
public class ToStringStyle extends org.apache.commons.lang3.builder.ToStringStyle {
    private static final int CARD_MIN_LEN = 14;
    private static final int CARD_BIN_LEN = 6;

From source file org.rutebanken.netex.OmitNullsToStringStyle.java

public class OmitNullsToStringStyle extends org.apache.commons.lang3.builder.ToStringStyle {

    /**
    * 
    */
    private static final long serialVersionUID = 7043613680114711384L;

From source file io.wcm.devops.conga.plugins.aem.handlebars.helper.NoClassNameOmitNullsStyle.java

final class NoClassNameOmitNullsStyle extends ToStringStyle {
    private static final long serialVersionUID = 1L;

    /**
     * Compact ToString style without class name ignoring null values.
     */

From source file de.micromata.genome.util.strings.ReducedMultiLineStyle.java

/**
 * The Class ReducedMultiLineStyle.
 *
 * @author roger@micromata.de
 */
public class ReducedMultiLineStyle extends ToStringStyle {

From source file org.killbill.billing.plugin.simpletax.util.ShortToStringStyle.java

/**
 * A {@link ToStringStyle} that prints out the short class name without
 * sacrifying the identity hashcode like
 * {@link org.apache.commons.lang3.builder.ToStringStyle#SHORT_PREFIX_STYLE}
 * does.
 *

From source file org.ruogu.lang3.builder.DateStyle.java

public class DateStyle extends ToStringStyle {
    protected void appendDetail(StringBuffer buffer, String fieldName, Object value) {
        if (value instanceof Date) {
            value = new SimpleDateFormat("yyyy-MM-dd").format(value);
        }
        buffer.append(value);

From source file org.spout.api.util.SpoutToStringStyle.java

/**
 * A {@link ToStringStyle} that makes the output of tostringBuilder match what SpoutAPI uses.
 */
public class SpoutToStringStyle extends ToStringStyle {
    private static final long serialVersionUID = 1L;