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

xmlparser.parsing.ObjectSerializer Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package xmlparser.parsing;

public interface ObjectSerializer {
    String convert(Object value);

    static ObjectSerializer defaultSerializer() {
        return Object::toString;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy