Interface RecordTransformer

    • Method Summary

      Modifier and Type Method Description
      default boolean isNoOp()
      Returns true if the transformer is no-op (can be skipped), false otherwise.
      GenericRow transform​(GenericRow record)
      Transforms a record based on some custom rules.
    • Method Detail

      • isNoOp

        default boolean isNoOp()
        Returns true if the transformer is no-op (can be skipped), false otherwise.
      • transform

        @Nullable
        GenericRow transform​(GenericRow record)
        Transforms a record based on some custom rules.
        Parameters:
        record - Record to transform
        Returns:
        Transformed record, or null if the record does not follow certain rules.