All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.iyzipay.ToStringRequestStyle Maven / Gradle / Ivy

There is a newer version: 2.0.133
Show newest version
package com.iyzipay;

import org.apache.commons.lang3.builder.ToStringStyle;

public class ToStringRequestStyle extends ToStringStyle {

    public ToStringRequestStyle() {
        setUseClassName(false);
        setUseFieldNames(true);
        setUseIdentityHashCode(false);
    }

    @Override
    public void append(StringBuffer buffer, String fieldName, Object value, Boolean fullDetail) {
        if (value != null) {
            super.append(buffer, fieldName, value, fullDetail);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy