All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.allegro.tech.hermes.api.Query Maven / Gradle / Ivy

There is a newer version: 2.6.22
Show newest version
package pl.allegro.tech.hermes.api;

import java.util.Collection;
import java.util.stream.Stream;

public interface Query {

    Stream filter(Stream input);

    default Stream filter(Collection input) {
        return filter(input.stream());
    }

     Stream filterNames(Stream input);

    default  Stream filterNames(Collection input) {
        return filterNames(input.stream());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy