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 SummaryAll 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- 
applyPerspectiveExpression apply(BindingContext bindingContext, java.lang.String s) throws ConfigurationException Description copied from interface:FragileBiFunctionApplies this function to the given arguments.- Specified by:
- applyin interface- FragileBiFunction<BindingContext,java.lang.String,PerspectiveExpression,ConfigurationException>
- Parameters:
- bindingContext- the first function argument
- s- the second function argument
- Returns:
- the function result
- Throws:
- ConfigurationException
- See Also:
- BiFunction.apply(Object, Object)
 
 
- 
 
-