Package org.neo4j.cypherdsl.core
Interface LoadCSVStatementBuilder.OngoingLoadCSV
-
- Enclosing interface:
- LoadCSVStatementBuilder
public static interface LoadCSVStatementBuilder.OngoingLoadCSVAn instance of this interface will be provided after pointing the database to a validURIof a CSV resource.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @NotNull LoadCSVStatementBuilderas(String alias)Configure the alias for each line contained in the CSV resourcedefault @NotNull LoadCSVStatementBuilderas(SymbolicName alias)Configure the alias for each line contained in the CSV resource
-
-
-
Method Detail
-
as
@NotNull @Contract(pure=true) default @NotNull LoadCSVStatementBuilder as(SymbolicName alias)
Configure the alias for each line contained in the CSV resource- Parameters:
alias- The alias for each line- Returns:
- A statement builder supporting all available clauses plus an option to configure the field terminator
-
as
@NotNull @Contract(pure=true) @NotNull LoadCSVStatementBuilder as(String alias)
Configure the alias for each line contained in the CSV resource- Parameters:
alias- The alias for each line- Returns:
- A statement builder supporting all available clauses plus an option to configure the field terminator
-
-