
com.sdklite.sphere.io.GenericSerializer Maven / Gradle / Ivy
The newest version!
package com.sdklite.sphere.io;
import java.io.Serializable;
import java.lang.reflect.Type;
public abstract class GenericSerializer implements Serializer {
private final Type type;
public GenericSerializer(final Type type) {
this.type = type;
}
public final Type getType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy