FlowType Class

public final class FlowType
extends ExpandableStringEnum<FlowType>

Used by the Application Insights system to determine what kind of flow this component was created by. This is to be set to 'Bluefield' when creating/updating a component via the REST API.

Field Summary

Modifier and Type Field and Description
static final FlowType BLUEFIELD

Static value Bluefield for FlowType.

Constructor Summary

Constructor Description
FlowType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of FlowType value.

Method Summary

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

Creates or finds a FlowType from its string representation.

static Collection<FlowType> values()

Gets known FlowType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

BLUEFIELD

public static final FlowType BLUEFIELD

Static value Bluefield for FlowType.

Constructor Details

FlowType

@Deprecated
public FlowType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of FlowType value.

Method Details

fromString

public static FlowType fromString(String name)

Creates or finds a FlowType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding FlowType.

values

public static Collection values()

Gets known FlowType values.

Returns:

known FlowType values.

Applies to