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

com.github.markozajc.ef.supplier.ByteSupplier Maven / Gradle / Ivy

package com.github.markozajc.ef.supplier;

import java.util.function.Supplier;

/**
 * A {@link Supplier} variant that and returns a primitive byte.
 *
 * @author Marko Zajc
 */
public interface ByteSupplier {

	/**
	 * Gets a result.
	 *
	 * @return a result
	 */
	byte getAsByte();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy