Interface Predicate<T>

All Superinterfaces:
Predicate<T>
All Known Subinterfaces:
Requirement
All Known Implementing Classes:
PredicateAnd, PredicateEqualsIgnoreCase, PredicateJPredicate, PredicateLevenshteinClose, PredicateNot, PredicateStartsWithIgnoreCase, PredicateStringEndsWith, PredicateStringStartsWith, RequirementAbstract, RequirementHasItemInHand, RequirementHasPerm, RequirementIsntPlayer, RequirementIsPlayer

public interface Predicate<T> extends Predicate<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    apply(T type)
     
    default boolean
    test(T type)
     

    Methods inherited from interface java.util.function.Predicate

    and, negate, or
  • Method Details

    • apply

      boolean apply(T type)
    • test

      default boolean test(T type)
      Specified by:
      test in interface Predicate<T>