com.azure.resourcemanager.storage.models.StorageService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// 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