RunType Class

public class RunType extends ExpandableStringEnum

Defines values for RunType.

Field Summary

Modifier and Type Field and Description
final RunType AUTO_BUILD

Static value AutoBuild for RunType.

final RunType AUTO_RUN

Static value AutoRun for RunType.

final RunType QUICK_BUILD

Static value QuickBuild for RunType.

final RunType QUICK_RUN

Static value QuickRun for RunType.

Method Summary

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

Creates or finds a RunType from its string representation.

Collection<RunType> values()

Inherited Members

Field Details

AUTO_BUILD

public static final RunType AUTO_BUILD= fromString("AutoBuild")

Static value AutoBuild for RunType.

AUTO_RUN

public static final RunType AUTO_RUN= fromString("AutoRun")

Static value AutoRun for RunType.

QUICK_BUILD

public static final RunType QUICK_BUILD= fromString("QuickBuild")

Static value QuickBuild for RunType.

QUICK_RUN

public static final RunType QUICK_RUN= fromString("QuickRun")

Static value QuickRun for RunType.

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()

Returns:

known RunType values

Applies to