Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Selector.java « util « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ed23f2a5e1f03374818a6cd8259158b69a57bb0 (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.util;

public interface Selector
    extends Cloneable
{
    boolean match(Object obj);

    Object clone();
}