Interface TransformFactory
- 
- All Known Implementing Classes:
 ExpressionTransformFactory,FormatTransformFactory,MapTransformFactory
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
@FunctionalInterface public interface TransformFactoryA way to create transform instances of a certain transform type. Registered with theBindingRegistryImpl 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Transformcreate(BindingContext context, com.inductiveautomation.ignition.common.gson.JsonObject config)Create a new instance of a transform type. 
 - 
 
- 
- 
Method Detail
- 
create
Transform create(BindingContext context, com.inductiveautomation.ignition.common.gson.JsonObject config) throws ConfigurationException
Create a new instance of a transform type.- Parameters:
 context- The binding context this transform operates inconfig- The configuration of the transform- Throws:
 ConfigurationException
 
 - 
 
 -