package org.simpleframework.xml.convert; import org.simpleframework.xml.stream.InputNode; import org.simpleframework.xml.stream.OutputNode; /* loaded from: classes6.dex */ public interface Converter { T read(InputNode inputNode) throws Exception; void write(OutputNode outputNode, T t) throws Exception; }