![JAR search and dependency download from the Maven repository](/logo.png)
emu.grasscutter.scripts.serializer.Serializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grasscutter Show documentation
Show all versions of grasscutter Show documentation
A server software reimplementation for an anime game.
The newest version!
package emu.grasscutter.scripts.serializer;
import java.util.List;
import java.util.Map;
public interface Serializer {
public List toList(Class type, Object obj);
public T toObject(Class type, Object obj);
public Map toMap(Class type, Object obj);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy