All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.marklogic.flux.api.ReadTabularFilesOptions Maven / Gradle / Ivy

There is a newer version: 1.0.0.ea1
Show newest version
/*
 * Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
 */
package com.marklogic.flux.api;

import java.util.Map;

/**
 * For objects that can import tabular files, where the data source supports additional options
 * that do not have dedicated methods in the importer interface.
 */
public interface ReadTabularFilesOptions extends ReadFilesOptions {

    ReadTabularFilesOptions additionalOptions(Map options);

    ReadTabularFilesOptions groupBy(String columnName);

    ReadTabularFilesOptions aggregateColumns(String newColumnName, String... columns);

    ReadTabularFilesOptions uriIncludeFilePath(boolean value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy