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 booleanisContextual()Verify if this isDataOperatorspecific (contextual) object.default booleanisDelegateOf(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:DataOperatorAwareVerify if this isDataOperatorspecific (contextual) object.- Specified by:
isContextualin interfaceDataOperatorAware- Returns:
- boolean
-
isDelegateOf
default boolean isDelegateOf(DataOperatorFactory operatorFactory)
Description copied from interface:DataOperatorAwareVerify if this Transformation belongs to given DataOperatorFactory- Specified by:
isDelegateOfin interfaceDataOperatorAware- Parameters:
operatorFactory- the DataOperatorFactory- Returns:
- boolean
-
-