다음을 통해 공유


StorageService Class

public class StorageService
extends ExpandableStringEnum<StorageService>

Azure storage service types.

Field Summary

Modifier and Type Field and Description
static final StorageService BLOB

Static value Blob for StorageService.

static final StorageService FILE

Static value File for StorageService.

static final StorageService QUEUE

Static value Queue for StorageService.

static final StorageService TABLE

Static value Table for StorageService.

Constructor Summary

Constructor Description
StorageService()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of StorageService value.

Method Summary

Modifier and Type Method and Description
static StorageService fromString(String name)

Creates or finds a service type based on its name.

static Collection<StorageService> values()

Gets known storage service types.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

BLOB

public static final StorageService BLOB

Static value Blob for StorageService.

FILE

public static final StorageService FILE

Static value File for StorageService.

QUEUE

public static final StorageService QUEUE

Static value Queue for StorageService.

TABLE

public static final StorageService TABLE

Static value Table for StorageService.

Constructor Details

StorageService

@Deprecated
public StorageService()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of StorageService value.

Method Details

fromString

public static StorageService fromString(String name)

Creates or finds a service type based on its name.

Parameters:

name - a name to look for

Returns:

an StorageService

values

public static Collection values()

Gets known storage service types.

Returns:

known storage service types.

Applies to