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

io.github.novareseller.tool.utils.AbstractPrintable Maven / Gradle / Ivy

There is a newer version: 1.5.3.beta
Show newest version
package io.github.novareseller.tool.utils;

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

import java.io.Serializable;

/**
 * @author: Bowen huang
 * @date: 2021/04/29
 */
public abstract class AbstractPrintable implements Serializable, Cloneable {
    @Override
    public String toString() {
        return ToStringBuilder.reflectionToString(this, ToStringStyle.JSON_STYLE);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy