what-the-bank/sources/org/bouncycastle/util/Selector.java

9 lines
160 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.util;
/* loaded from: classes6.dex */
public interface Selector<T> extends Cloneable {
Object clone();
boolean match(T t);
}