OperationKind Class

public final class OperationKind
extends ExpandableStringEnum<OperationKind>

Kind of the long running operation.

Field Summary

Modifier and Type Field and Description
static final OperationKind CLONE_TEST

Operation represents a clone test operation.

static final OperationKind GENERATE_TEST_RUN_INSIGHTS

Operation represents a test run insights generation operation.

static final OperationKind TEST_PLAN_RECOMMENDATIONS

Operation represents a test plan recommendations generation operation.

Constructor Summary

Constructor Description
OperationKind()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of OperationKind value.

Method Summary

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

Creates or finds a OperationKind from its string representation.

static Collection<OperationKind> values()

Gets known OperationKind values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CLONE_TEST

public static final OperationKind CLONE_TEST

Operation represents a clone test operation.

GENERATE_TEST_RUN_INSIGHTS

public static final OperationKind GENERATE_TEST_RUN_INSIGHTS

Operation represents a test run insights generation operation.

TEST_PLAN_RECOMMENDATIONS

public static final OperationKind TEST_PLAN_RECOMMENDATIONS

Operation represents a test plan recommendations generation operation.

Constructor Details

OperationKind

@Deprecated
public OperationKind()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of OperationKind value.

Method Details

fromString

public static OperationKind fromString(String name)

Creates or finds a OperationKind from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding OperationKind.

values

public static Collection<OperationKind> values()

Gets known OperationKind values.

Returns:

known OperationKind values.

Applies to