Interface BytePredicate

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 BytePredicate
Primitive predicate for byte values.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(byte value)
    Tests the supplied byte value.
  • Method Details

    • test

      boolean test(byte value)
      Tests the supplied byte value.
      Parameters:
      value - value to test
      Returns:
      predicate result