Package cz.o2.proxima.core.transform
Interface DataOperatorAgnostic
-
- All Superinterfaces:
DataOperatorAware
,java.io.Serializable
- All Known Subinterfaces:
ElementWiseProxyTransform
,ElementWiseTransformation
- All Known Implementing Classes:
IdentityTransformation
,RenameTransformation
@Internal public interface DataOperatorAgnostic extends DataOperatorAware
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default boolean
isContextual()
Verify if this isDataOperator
specific (contextual) object.default boolean
isDelegateOf(DataOperatorFactory operatorFactory)
Verify if this Transformation belongs to given DataOperatorFactory-
Methods inherited from interface cz.o2.proxima.core.transform.DataOperatorAware
as
-
-
-
-
Method Detail
-
isContextual
default boolean isContextual()
Description copied from interface:DataOperatorAware
Verify if this isDataOperator
specific (contextual) object.- Specified by:
isContextual
in interfaceDataOperatorAware
- Returns:
- boolean
-
isDelegateOf
default boolean isDelegateOf(DataOperatorFactory operatorFactory)
Description copied from interface:DataOperatorAware
Verify if this Transformation belongs to given DataOperatorFactory- Specified by:
isDelegateOf
in interfaceDataOperatorAware
- Parameters:
operatorFactory
- the DataOperatorFactory- Returns:
- boolean
-
-