Package jetbrains.buildServer.util
Interface Predicate<T>
-
- All Known Implementing Classes:
AsciiDetector,BigEndianDetector,BuildPromotionAccessFilter,LittleEndianDetector,Utf8Detector
public interface Predicate<T>Predicate.- Since:
- 7.1
- Author:
- Leonid Bushuev from JetBrains
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Predicate<T>and(Predicate<? super T> other)booleanapply(T item)Checks whether the given item meets the predicate.
-