Share via


EndpointType Class

public final class EndpointType
extends ExpandableStringEnum<EndpointType>

Type of the endpoint for the event subscription destination.

Field Summary

Modifier and Type Field and Description
static final EndpointType AZURE_FUNCTION

Static value AzureFunction for EndpointType.

static final EndpointType EVENT_HUB

Static value EventHub for EndpointType.

static final EndpointType HYBRID_CONNECTION

Static value HybridConnection for EndpointType.

static final EndpointType MONITOR_ALERT

Static value MonitorAlert for EndpointType.

static final EndpointType NAMESPACE_TOPIC

Static value NamespaceTopic for EndpointType.

static final EndpointType SERVICE_BUS_QUEUE

Static value ServiceBusQueue for EndpointType.

static final EndpointType SERVICE_BUS_TOPIC

Static value ServiceBusTopic for EndpointType.

static final EndpointType STORAGE_QUEUE

Static value StorageQueue for EndpointType.

static final EndpointType WEB_HOOK

Static value WebHook for EndpointType.

Constructor Summary

Constructor Description
EndpointType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of EndpointType value.

Method Summary

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

Creates or finds a EndpointType from its string representation.

static Collection<EndpointType> values()

Gets known EndpointType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

AZURE_FUNCTION

public static final EndpointType AZURE_FUNCTION

Static value AzureFunction for EndpointType.

EVENT_HUB

public static final EndpointType EVENT_HUB

Static value EventHub for EndpointType.

HYBRID_CONNECTION

public static final EndpointType HYBRID_CONNECTION

Static value HybridConnection for EndpointType.

MONITOR_ALERT

public static final EndpointType MONITOR_ALERT

Static value MonitorAlert for EndpointType.

NAMESPACE_TOPIC

public static final EndpointType NAMESPACE_TOPIC

Static value NamespaceTopic for EndpointType.

SERVICE_BUS_QUEUE

public static final EndpointType SERVICE_BUS_QUEUE

Static value ServiceBusQueue for EndpointType.

SERVICE_BUS_TOPIC

public static final EndpointType SERVICE_BUS_TOPIC

Static value ServiceBusTopic for EndpointType.

STORAGE_QUEUE

public static final EndpointType STORAGE_QUEUE

Static value StorageQueue for EndpointType.

WEB_HOOK

public static final EndpointType WEB_HOOK

Static value WebHook for EndpointType.

Constructor Details

EndpointType

@Deprecated
public EndpointType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of EndpointType value.

Method Details

fromString

public static EndpointType fromString(String name)

Creates or finds a EndpointType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding EndpointType.

values

public static Collection<EndpointType> values()

Gets known EndpointType values.

Returns:

known EndpointType values.

Applies to