mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
distinguish static and default methods in cls interfaces (IDEA-140371)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
|
||||
// IntelliJ API Decompiler stub source generated from a class file
|
||||
// Implementation of methods is not available
|
||||
|
||||
package java.util.function;
|
||||
|
||||
@java.lang.FunctionalInterface
|
||||
public interface Function <T, R> {
|
||||
R apply(T t);
|
||||
|
||||
default <V> java.util.function.Function<V,R> compose(java.util.function.Function<? super V,? extends T> function) { /* compiled code */ }
|
||||
|
||||
default <V> java.util.function.Function<T,V> andThen(java.util.function.Function<? super R,? extends V> function) { /* compiled code */ }
|
||||
|
||||
static <T> java.util.function.Function<T,T> identity() { /* compiled code */ }
|
||||
}
|
||||
Reference in New Issue
Block a user