Interface AllOfPredicate

All Superinterfaces:
BlockPredicate, CombiningPredicate, Wrapper

@NullMarked @AsOf("3.0.0") public interface AllOfPredicate extends CombiningPredicate
Combined multiple block predicates. Matches if all specified block predicates match.
Since:
3.0.0
See Also:
  • Method Details

    • toBuilder

      @AsOf("3.0.0") default AllOfPredicate.Builder toBuilder()
      Converts this object to a builder.
      Returns:
      the builder
      Since:
      3.0.0
    • of

      @AsOf("3.0.0") static AllOfPredicate of(List<BlockPredicate> predicates)
      Creates a new AllOfPredicate with the specified predicates.
      Parameters:
      predicates - the predicates to combine
      Returns:
      the AllOfPredicate
      Since:
      3.0.0
    • builder

      @AsOf("3.0.0") static AllOfPredicate.Builder builder()
      Creates a new builder.
      Returns:
      a new builder
      Since:
      3.0.0