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

com.aol.cyclops.matcher.builders.ExtractionStep Maven / Gradle / Ivy

There is a newer version: 7.2.4
Show newest version
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