com.microsoft.bingads.v13.internal.bulk.RowValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
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.
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);
}
}