D | ShellIdentityUtils.java | 138 public interface TriFunction<T, U, V, R> { 139 R apply(T t, U u, V v); in apply() 143 public interface QuadFunction<T, U, V, W, R> { 144 R apply(T t, U u, V v, W w); in apply() 176 public static <T, U, V, R> R invokeMethodWithShellPermissions(T arg1, U arg2, V arg3, in invokeMethodWithShellPermissions() 177 TriFunction<? super T, ? super U, ? super V, ? extends R> methodHelper, in invokeMethodWithShellPermissions() argument 198 public static <T, U, V, W, R> R invokeMethodWithShellPermissions(T arg1, U arg2, V arg3, W arg4, in invokeMethodWithShellPermissions() 199 QuadFunction<? super T, ? super U, ? super V, ? super W, ? extends R> methodHelper, in invokeMethodWithShellPermissions() argument
|