Interface FloatPredicate

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 FloatPredicate
A function which takes one float as its input, and returns one boolean.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(float value)
    Tests a value with this predicate.
  • Method Details

    • test

      boolean test(float value)
      Tests a value with this predicate.
      Parameters:
      value - The value of which to test
      Returns:
      The return value of this function