com.clickzetta.platform.client.api.BulkLoadOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.platform.client.api;
/**
* Operations supported by bulk load.
*/
public enum BulkLoadOperation {
APPEND("APPEND"),
OVERWRITE("OVERWRITE"),
UPSERT("UPSERT");
private String operation;
BulkLoadOperation(String text) {
this.operation = text;
}
public String getOperation() {
return operation;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy