com.exasol.bucketfs.BucketOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bucketfs-java Show documentation
Show all versions of bucketfs-java Show documentation
Java library for automating tasks on Exasol's BucketFS.
The newest version!
package com.exasol.bucketfs;
/**
* Types of operations a bucket supports.
*/
public enum BucketOperation {
/**
* download
*/
DOWNLOAD,
/**
* list
*/
LIST,
/**
* upload
*/
UPLOAD,
/**
* delete
*/
DELETE;
@Override
public String toString() {
return name().toLowerCase();
}
}