Uses of Class
com.snowflake.snowpark_java.WriteFileResult
-
Packages that use WriteFileResult Package Description com.snowflake.snowpark_java Provides most of the classes for the Snowpark Java API. -
-
Uses of WriteFileResult in com.snowflake.snowpark_java
Methods in com.snowflake.snowpark_java that return WriteFileResult Modifier and Type Method Description WriteFileResult
DataFrameWriter. csv(String path)
Saves the contents of the DataFrame to a CSV file on a stage.WriteFileResult
DataFrameWriter. json(String path)
Saves the contents of the DataFrame to a JSON file on a stage.WriteFileResult
DataFrameWriter. parquet(String path)
Saves the contents of the DataFrame to a Parquet file on a stage.Methods in com.snowflake.snowpark_java that return types with arguments of type WriteFileResult Modifier and Type Method Description TypedAsyncJob<WriteFileResult>
DataFrameWriterAsyncActor. csv(String path)
Executes `DataFrameWriter.csv()` asynchronously.TypedAsyncJob<WriteFileResult>
DataFrameWriterAsyncActor. json(String path)
Executes `DataFrameWriter.json()` asynchronously.TypedAsyncJob<WriteFileResult>
DataFrameWriterAsyncActor. parquet(String path)
Executes `DataFrameWriter.parquet()` asynchronously.
-