io.quarkiverse.roq.data.deployment.DataConverter Maven / Gradle / Ivy
The newest version!
package io.quarkiverse.roq.data.deployment;
import java.io.IOException;
import java.util.List;
public interface DataConverter {
Object convert(byte[] content) throws IOException;
T convertToType(byte[] content, Class clazz) throws IOException;
List convertToTypedList(byte[] content, Class clazz) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy