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

com.jelastic.api.data.MountProtocol Maven / Gradle / Ivy

The newest version!
/*Server class MD5: a3ed6266c1758af5328162b2d13358ad*/
package com.jelastic.api.data;

/**
 * @name Jelastic API Client
 * @version 8.11.2
 * @copyright Jelastic, Inc.
 */
public enum MountProtocol {

    NFS("NFS"),
    NFS3("NFS3"),
    NFS4("NFS4"),
    LOCAL("LOCAL"),
    WEBDAV("WEBDAV"),
    GLUSTER("GLUSTER");

    private final String value;

    private MountProtocol(String value) {
        this.value = value;
    }

    public String toString() {
        return value;
    }

    public static String availableValues() {
        String availableValues = "";
        for (MountProtocol mountProtocol : MountProtocol.values()) {
            availableValues += " " + mountProtocol.value + ",";
        }
        return availableValues.substring(0, availableValues.length() - 1);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy