io.github.orange.line.parser.deserializer.ObjectDeserializer 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.parser.deserializer;
import io.github.orange.line.annotation.Property;
import io.github.orange.line.parser.LineParser;
import java.lang.reflect.Field;
import java.lang.reflect.Type;
/**
* @author orange
* 反序列化接口
*/
public interface ObjectDeserializer
{
T deserialze(LineParser parser, String input, Field field);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy