com.davidbracewell.io.structured.Readable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mango Show documentation
Show all versions of mango Show documentation
A set of utilities and tools to speed up and ease programming in Java.
package com.davidbracewell.io.structured;
import com.davidbracewell.reflection.BeanMap;
import java.io.IOException;
/**
* @author David B. Bracewell
*/
public interface Readable {
default void read(StructuredReader reader) throws IOException {
new BeanMap(this).putAll(reader.nextMap());
}
}//END OF Readable
© 2015 - 2025 Weber Informatics LLC | Privacy Policy