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

9 lines
198 B
Java

package org.bouncycastle.util;
import java.util.Collection;
/* loaded from: classes6.dex */
public interface Store<T> {
Collection<T> getMatches(Selector<T> selector) throws StoreException;
}