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

com.clickzetta.platform.client.api.BulkLoadOperation Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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