Class PythonTypeUtils.ArrayDataConverter<T>
- java.lang.Object
-
- org.apache.flink.streaming.api.utils.PythonTypeUtils.DataConverter<T[],Object[]>
-
- org.apache.flink.streaming.api.utils.PythonTypeUtils.ArrayDataConverter<T>
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- PythonTypeUtils
public static final class PythonTypeUtils.ArrayDataConverter<T> extends PythonTypeUtils.DataConverter<T[],Object[]>
The element in the Object Array will be converted to the corresponding Data through element DataConverter.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Object[]toExternal(T[] value)T[]toInternal(Object[] value)
-
-
-
Method Detail
-
toInternal
public T[] toInternal(Object[] value)
- Specified by:
toInternalin classPythonTypeUtils.DataConverter<T[],Object[]>
-
toExternal
public Object[] toExternal(T[] value)
- Specified by:
toExternalin classPythonTypeUtils.DataConverter<T[],Object[]>
-
-