Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
Socializer
Socializer
/
t
/
t4018
/
java-interface-type-parameters-extends
Code
Commits
Pulls
CI/CD
81,972
jch
bisect
jch
maint
master
next
seen
test
todo
text
6 lines
141 Bytes
Copy permalink
Copy
Raw
1
interface RIGHT<A, B> extends Function<A, B> {
2
static int ONE;
3
static int TWO;
4
static int THREE;
5
public B foo(A ChangeMe);
6
}