mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
11 lines
262 B
Java
11 lines
262 B
Java
package com.google.common.base;
|
|
|
|
import javax.annotation.CheckForNull;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes2.dex */
|
|
public interface Predicate<T> {
|
|
boolean apply(@ParametricNullness T t);
|
|
|
|
boolean equals(@CheckForNull Object obj);
|
|
}
|