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

com.microsoft.bingads.v13.internal.bulk.RowValues Maven / Gradle / Ivy

Go to download

The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

There is a newer version: 13.0.22.1
Show newest version
package com.microsoft.bingads.v13.internal.bulk;

import java.util.HashMap;
import java.util.Map;

/**
 * Encapsulates a row of csv values and the corresponding header mappings for that array
 *
 */
public class RowValues extends com.microsoft.bingads.internal.RowValues {

    public RowValues() {
        this(new HashMap());
    }
    
    public RowValues(Map rowValues) {
        super(new String[CsvHeaders.getMappings().keySet().size()], CsvHeaders.getMappings());

        for (String key : rowValues.keySet()) {
            this.put(key, rowValues.get(key));
        }
    }

    public RowValues(String[] columns, Map mappings) {
        super(columns, mappings);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy