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

com.exasol.bucketfs.BucketOperation Maven / Gradle / Ivy

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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy