All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.davidbracewell.io.structured.Readable Maven / Gradle / Ivy

There is a newer version: 0.5
Show newest version
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