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

com.azure.resourcemanager.storage.models.StorageService Maven / Gradle / Ivy

There is a newer version: 2.44.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.resourcemanager.storage.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/** Azure storage service types. */
public class StorageService extends ExpandableStringEnum {
    /** Static value Blob for StorageService. */
    public static final StorageService BLOB = fromString("Blob");

    /** Static value Table for StorageService. */
    public static final StorageService TABLE = fromString("Table");

    /** Static value Queue for StorageService. */
    public static final StorageService QUEUE = fromString("Queue");

    /** Static value File for StorageService. */
    public static final StorageService FILE = fromString("File");

    /**
     * Creates or finds a service service type based on its name.
     *
     * @param name a name to look for
     * @return an StorageService
     */
    public static StorageService fromString(String name) {
        return fromString(name, StorageService.class);
    }

    /** @return known storage service types. */
    public static Collection values() {
        return values(StorageService.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy