io.github.orange.line.serializer.ObjectSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orange-line Show documentation
Show all versions of orange-line Show documentation
The object is (inversely) sequenced into a single line of string
The newest version!
package io.github.orange.line.serializer;
import io.github.orange.line.annotation.Property;
import java.lang.reflect.Type;
/**
* @author orange
*/
public interface ObjectSerializer
{
void write(LineSerializer serializer, Object object, Type type, String fieldName, Property property);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy