NodeInputReader
This class is deprecated
Methods
inputAsFile(): File (Deprecated)
inputAsFile(): File (Deprecated)var fileInput = NodeInputReader.inputAsFile();
// Use the 'fileInput' File object in your codeinputAsDataFrame(page: Integer, limit: Integer): Table (Deprecated)
inputAsDataFrame(page: Integer, limit: Integer): Table (Deprecated)var page = 1;
var limit = 10;
var tableInput = NodeInputReader.inputAsDataFrame(page, limit);
// Use the 'tableInput' Table object in your codeinputAsDataObject(): JsonNode (Deprecated)
inputAsDataObject(): JsonNode (Deprecated)inputAsFileIndex(index: Integer): File (Deprecated)
inputAsFileIndex(index: Integer): File (Deprecated)inputAsDataFrameIndex(index: Integer, page: Integer, limit: Integer): Table (Deprecated)
inputAsDataFrameIndex(index: Integer, page: Integer, limit: Integer): Table (Deprecated)inputAsDataFrameTotalRows(): Integer (Deprecated)
inputAsDataFrameTotalRows(): Integer (Deprecated)inputAsDataFrameByIndexTotalRows(index: Integer): Integer (Deprecated)
inputAsDataFrameByIndexTotalRows(index: Integer): Integer (Deprecated)inputAsDataFrame(): Table (Deprecated)
inputAsDataFrame(): Table (Deprecated)Examples
Last updated