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

java-interface-type-parameters-extends « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31d7fb32444848dc99ebbcab051cd4fe4a729cd4 (plain)
1
2
3
4
5
6
interface RIGHT<A, B> extends Function<A, B> {
    static int ONE;
    static int TWO;
    static int THREE;
    public B foo(A ChangeMe);
}