RunType Class

public final class RunType
extends ExpandableStringEnum<RunType>

The type of run.

Field Summary

Modifier and Type Field and Description
static final RunType AUTO_BUILD

Static value AutoBuild for RunType.

static final RunType AUTO_RUN

Static value AutoRun for RunType.

static final RunType QUICK_BUILD

Static value QuickBuild for RunType.

static final RunType QUICK_RUN

Static value QuickRun for RunType.

Constructor Summary

Constructor Description
RunType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of RunType value.

Method Summary

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

Creates or finds a RunType from its string representation.

static Collection<RunType> values()

Gets known RunType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

AUTO_BUILD

public static final RunType AUTO_BUILD

Static value AutoBuild for RunType.

AUTO_RUN

public static final RunType AUTO_RUN

Static value AutoRun for RunType.

QUICK_BUILD

public static final RunType QUICK_BUILD

Static value QuickBuild for RunType.

QUICK_RUN

public static final RunType QUICK_RUN

Static value QuickRun for RunType.

Constructor Details

RunType

@Deprecated
public RunType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of RunType value.

Method Details

fromString

public static RunType fromString(String name)

Creates or finds a RunType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding RunType.

values

public static Collection values()

Gets known RunType values.

Returns:

known RunType values.

Applies to