com.aol.cyclops.matcher.builders.ExtractionStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cyclops-pattern-matching-collections Show documentation
Show all versions of cyclops-pattern-matching-collections Show documentation
Advanced pattern matching for Java 8
package com.aol.cyclops.matcher.builders;
import com.aol.cyclops.matcher.Extractor;
public interface ExtractionStep {
/**
* Select the elements from a Collection to be extracted and passed to an Action
*
* @param extractor Extractor to extract elements / transform a collection
* @return Next step in the Case Builder process
*/
public CollectionStep thenExtract(Extractor extractor);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy