com.ly.mybatis.mapperservice.service.join.inject.interfaces.IKeyInject Maven / Gradle / Ivy
package com.ly.mybatis.mapperservice.service.join.inject.interfaces;
import java.util.Collection;
import java.util.function.Function;
import java.util.function.Predicate;
public interface IKeyInject extends IStreamInject {
IKeyInject filter(Predicate super K> predicate);
IKeyInject map(Function super K, ? extends R> mapper);
IKeyInject flatMap(Function super K, ? extends Collection extends R>> mapper);
IOnInject on();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy