Freigeben über


ProcessingLocation Class

public final class ProcessingLocation
extends ExpandableStringEnum<ProcessingLocation>

The location where the data may be processed.

Field Summary

Modifier and Type Field and Description
static final ProcessingLocation DATA_ZONE

Data may be processed in the same data zone as the resource.

static final ProcessingLocation GEOGRAPHY

Data may be processed in the same geography as the resource.

static final ProcessingLocation GLOBAL

Data may be processed in any Azure data center globally.

Constructor Summary

Constructor Description
ProcessingLocation()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ProcessingLocation value.

Method Summary

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

Creates or finds a ProcessingLocation from its string representation.

static Collection<ProcessingLocation> values()

Gets known ProcessingLocation values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DATA_ZONE

public static final ProcessingLocation DATA_ZONE

Data may be processed in the same data zone as the resource.

GEOGRAPHY

public static final ProcessingLocation GEOGRAPHY

Data may be processed in the same geography as the resource.

GLOBAL

public static final ProcessingLocation GLOBAL

Data may be processed in any Azure data center globally.

Constructor Details

ProcessingLocation

@Deprecated
public ProcessingLocation()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ProcessingLocation value.

Method Details

fromString

public static ProcessingLocation fromString(String name)

Creates or finds a ProcessingLocation from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ProcessingLocation.

values

public static Collection<ProcessingLocation> values()

Gets known ProcessingLocation values.

Returns:

known ProcessingLocation values.

Applies to