Class RunType
- java.lang.Object
-
- com.azure.core.util.ExpandableStringEnum<RunType>
-
- com.azure.resourcemanager.containerregistry.models.RunType
-
public final class RunType extends com.azure.core.util.ExpandableStringEnum<RunType>
Defines values for RunType.
-
-
Field Summary
Fields Modifier and Type Field Description static RunTypeAUTO_BUILDStatic value AutoBuild for RunType.static RunTypeAUTO_RUNStatic value AutoRun for RunType.static RunTypeQUICK_BUILDStatic value QuickBuild for RunType.static RunTypeQUICK_RUNStatic value QuickRun for RunType.
-
Constructor Summary
Constructors Constructor Description RunType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RunTypefromString(String name)Creates or finds a RunType from its string representation.static Collection<RunType>values()
-
-
-
Field Detail
-
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.
-
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.
-
-
Method Detail
-
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<RunType> values()
- Returns:
- known RunType values.
-
-