001package com.hammurapi.extract; 002 003/** 004 * Extractors which computes value using two extractors - left extractor and right extractor. 005 * @author Pavel Vlasov 006 * 007 */ 008public interface BinaryExtractor<T,V,C> { 009 010 Extractor<T,V,C> getLeftExtractor(); 011 012 Extractor<T,V,C> getRightExtractor(); 013}