TestProfileRunStatus Class

public final class TestProfileRunStatus
extends ExpandableStringEnum<TestProfileRunStatus>

Test profile run status.

Field Summary

Modifier and Type Field and Description
static final TestProfileRunStatus ACCEPTED

Test profile run request is accepted.

static final TestProfileRunStatus CANCELLED

Test profile run is cancelled.

static final TestProfileRunStatus CANCELLING

Test profile run is being cancelled.

static final TestProfileRunStatus DONE

Test profile run has completed successfully.

static final TestProfileRunStatus EXECUTING

Test profile run has started executing.

static final TestProfileRunStatus FAILED

Test profile run has failed.

static final TestProfileRunStatus NOT_STARTED

Test profile run is not yet started.

Constructor Summary

Constructor Description
TestProfileRunStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of TestProfileRunStatus value.

Method Summary

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

Creates or finds a TestProfileRunStatus from its string representation.

static Collection<TestProfileRunStatus> values()

Gets known TestProfileRunStatus values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

ACCEPTED

public static final TestProfileRunStatus ACCEPTED

Test profile run request is accepted.

CANCELLED

public static final TestProfileRunStatus CANCELLED

Test profile run is cancelled.

CANCELLING

public static final TestProfileRunStatus CANCELLING

Test profile run is being cancelled.

DONE

public static final TestProfileRunStatus DONE

Test profile run has completed successfully.

EXECUTING

public static final TestProfileRunStatus EXECUTING

Test profile run has started executing.

FAILED

public static final TestProfileRunStatus FAILED

Test profile run has failed.

NOT_STARTED

public static final TestProfileRunStatus NOT_STARTED

Test profile run is not yet started.

Constructor Details

TestProfileRunStatus

@Deprecated
public TestProfileRunStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of TestProfileRunStatus value.

Method Details

fromString

public static TestProfileRunStatus fromString(String name)

Creates or finds a TestProfileRunStatus from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding TestProfileRunStatus.

values

public static Collection<TestProfileRunStatus> values()

Gets known TestProfileRunStatus values.

Returns:

known TestProfileRunStatus values.

Applies to