Interface AppendOnlyLinkedArrayList.NonThrowingPredicate<T>
-
- Type Parameters:
T
- the value type
- All Superinterfaces:
Predicate<T>
- All Known Implementing Classes:
BehaviorProcessor.BehaviorSubscription
,BehaviorSubject.BehaviorDisposable
,SerializedSubject
- Enclosing class:
- AppendOnlyLinkedArrayList<T>
public static interface AppendOnlyLinkedArrayList.NonThrowingPredicate<T> extends Predicate<T>
Predicate interface suppressing the exception.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
test(T t)
Test the given input value and return a boolean.
-