org.yamcs.utils.ByteSupplier Maven / Gradle / Ivy
package org.yamcs.utils;
@FunctionalInterface
public interface ByteSupplier {
/**
* Gets a result.
*
* @return a result
*/
byte getAsByte();
}
package org.yamcs.utils;
@FunctionalInterface
public interface ByteSupplier {
/**
* Gets a result.
*
* @return a result
*/
byte getAsByte();
}