Interface PerspectiveExpressionFactory
- 
- All Superinterfaces:
 FragileBiFunction<BindingContext,java.lang.String,PerspectiveExpression,ConfigurationException>
public interface PerspectiveExpressionFactory extends FragileBiFunction<BindingContext,java.lang.String,PerspectiveExpression,ConfigurationException>
A PerspectiveExpressionFactory is aFragileBiFunctionwhich takes aBindingContextand an expression source as aStringand creates and returns the correspondingPerspectiveExpression 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PerspectiveExpressionapply(BindingContext bindingContext, java.lang.String s)Applies this function to the given arguments. 
 - 
 
- 
- 
Method Detail
- 
apply
PerspectiveExpression apply(BindingContext bindingContext, java.lang.String s) throws ConfigurationException
Description copied from interface:FragileBiFunctionApplies this function to the given arguments.- Specified by:
 applyin interfaceFragileBiFunction<BindingContext,java.lang.String,PerspectiveExpression,ConfigurationException>- Parameters:
 bindingContext- the first function arguments- the second function argument- Returns:
 - the function result
 - Throws:
 ConfigurationException- See Also:
 BiFunction.apply(Object, Object)
 
 - 
 
 -