Uses of Interface
org.miaixz.bus.core.center.function.SerConsumer3
Packages that use SerConsumer3
Package
Description
建造者工具
用于建造特定对象或结果,建造者模式的抽象。
函数封装
接口灵感来自于ActFramework
一个函数接口代表一个一个函数,用于包装一个函数为对象
在JDK8之前,Java的函数并不能作为参数传递,也不能作为返回值存在,此接口用于将一个函数包装成为一个对象,从而传递对象
多参数类型的Map实现,包括集合类型值的MultiValueMap和Table
MultiValueMap:一个键对应多个值的集合的实现,类似于树的结构。
Table:使用两个键映射到一个值,类似于表格结构。
提供各种工具封装
xyz:做好一切必要准备,可以行动了
-
Uses of SerConsumer3 in org.miaixz.bus.core.builder
Methods in org.miaixz.bus.core.builder with parameters of type SerConsumer3Modifier and TypeMethodDescription<P1,P2> GenericBuilder <T> GenericBuilder.with(SerConsumer3<T, P1, P2> consumer, P1 p1, P2 p2) 调用2参数方法 -
Uses of SerConsumer3 in org.miaixz.bus.core.center.function
Methods in org.miaixz.bus.core.center.function that return SerConsumer3Modifier and TypeMethodDescriptiondefault SerConsumer3<P1, P2, P3> SerConsumer3.andThen(SerConsumer3<P1, P2, P3> after) Returns a composedSerConsumer3that performs, in sequence, this operation followed by theafteroperation.Methods in org.miaixz.bus.core.center.function with parameters of type SerConsumer3Modifier and TypeMethodDescriptiondefault SerConsumer3<P1, P2, P3> SerConsumer3.andThen(SerConsumer3<P1, P2, P3> after) Returns a composedSerConsumer3that performs, in sequence, this operation followed by theafteroperation. -
Uses of SerConsumer3 in org.miaixz.bus.core.center.map.multi
Methods in org.miaixz.bus.core.center.map.multi with parameters of type SerConsumer3Modifier and TypeMethodDescriptiondefault voidTable.forEach(SerConsumer3<? super R, ? super C, ? super V> consumer) 遍历表格的单元格,处理值 -
Uses of SerConsumer3 in org.miaixz.bus.core.xyz
Methods in org.miaixz.bus.core.xyz with parameters of type SerConsumer3Modifier and TypeMethodDescriptionstatic <K,V> void CollKit.forEach(Map<K, V> map, SerConsumer3<K, V, Integer> kvConsumer) 循环遍历Map,使用SerConsumer3接受遍历的每条数据,并针对每条数据做处理 和JDK8中的map.forEach不同的是,此方法支持index