Interface ByteSupplier

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface ByteSupplier
    Function-Pointer Input: NONE Output: byte.

    Quite similar to Java's 'IntSupplier', the specialized 'Supplier' for primitive-integers, but whose 'get' method has been modified to return a 'byte'-primitive.


    • Method Summary

       
      @FunctionalInterface (Lambda) Method
      Modifier and Type Method
      byte getAsByte()
    • Method Detail

      • getAsByte

         
        byte getAsByte()
        Retrieves a result, as a 'byte'.
        Returns:
        The 'byte' result.