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

Method Summary

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

Creates or finds a service service type based on its name.

static java.util.Collection<StorageService> values()

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

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

public StorageService()

Method Details

fromString

public static StorageService fromString(String name)

Creates or finds a service service type based on its name.

Parameters:

name - a name to look for

Returns:

an StorageService

values

public static Collection values()

Returns:

known storage service types.

Applies to