Class RowDataWrapper

  • All Implemented Interfaces:
    StructLike

    public class RowDataWrapper
    extends java.lang.Object
    implements StructLike
    • Constructor Summary

      Constructors 
      Constructor Description
      RowDataWrapper​(org.apache.flink.table.types.logical.RowType rowType, Types.StructType struct)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <T> T get​(int pos, java.lang.Class<T> javaClass)  
      <T> void set​(int pos, T value)  
      int size()  
      RowDataWrapper wrap​(org.apache.flink.table.data.RowData data)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RowDataWrapper

        public RowDataWrapper​(org.apache.flink.table.types.logical.RowType rowType,
                              Types.StructType struct)
    • Method Detail

      • wrap

        public RowDataWrapper wrap​(org.apache.flink.table.data.RowData data)
      • size

        public int size()
        Specified by:
        size in interface StructLike
      • get

        public <T> T get​(int pos,
                         java.lang.Class<T> javaClass)
        Specified by:
        get in interface StructLike
      • set

        public <T> void set​(int pos,
                            T value)
        Specified by:
        set in interface StructLike