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

org.swiftboot.sheet.meta.PictureLoader Maven / Gradle / Ivy

There is a newer version: 2.4.7
Show newest version
package org.swiftboot.sheet.meta;

import java.io.IOException;

/**
 * Picture loader for client to input picture data.
 *
 * @author swiftech
 */
@FunctionalInterface
public interface PictureLoader {

    /**
     * Create {@code Picture} with picture type and data in binary.
     *
     * @return
     * @throws IOException
     */
    Picture get() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy