Class TransformActionRegistry
- java.lang.Object
-
- alluxio.table.common.transform.action.TransformActionRegistry
-
public class TransformActionRegistry extends java.lang.ObjectThe registry of transform actions.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.List<TransformAction>create(java.util.Properties definition)Creates a new instance of an ordered list ofTransformAction.static java.util.List<TransformActionFactory>getFactories()
-
-
-
Method Detail
-
create
public static java.util.List<TransformAction> create(java.util.Properties definition)
Creates a new instance of an ordered list ofTransformAction. The ordering here is the order that the Actions should be executed in.- Parameters:
definition- the raw definition of the action- Returns:
- a new instance of an action
-
getFactories
public static java.util.List<TransformActionFactory> getFactories()
- Returns:
- the list of TransformActionFactories
-
-