Enum LocalBuildConfig.BuildType
- java.lang.Object
-
- java.lang.Enum<LocalBuildConfig.BuildType>
-
- org.kie.workbench.common.services.backend.builder.ala.LocalBuildConfig.BuildType
-
- All Implemented Interfaces:
Serializable,Comparable<LocalBuildConfig.BuildType>
- Enclosing interface:
- LocalBuildConfig
public static enum LocalBuildConfig.BuildType extends Enum<LocalBuildConfig.BuildType>
Enumerates the different build types supported by the local build system.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL_BUILDFULL_BUILD_AND_DEPLOYINCREMENTAL_ADD_RESOURCEINCREMENTAL_BATCH_CHANGESINCREMENTAL_DELETE_RESOURCEINCREMENTAL_UPDATE_RESOURCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocalBuildConfig.BuildTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LocalBuildConfig.BuildType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL_BUILD
public static final LocalBuildConfig.BuildType FULL_BUILD
-
INCREMENTAL_ADD_RESOURCE
public static final LocalBuildConfig.BuildType INCREMENTAL_ADD_RESOURCE
-
INCREMENTAL_DELETE_RESOURCE
public static final LocalBuildConfig.BuildType INCREMENTAL_DELETE_RESOURCE
-
INCREMENTAL_UPDATE_RESOURCE
public static final LocalBuildConfig.BuildType INCREMENTAL_UPDATE_RESOURCE
-
INCREMENTAL_BATCH_CHANGES
public static final LocalBuildConfig.BuildType INCREMENTAL_BATCH_CHANGES
-
FULL_BUILD_AND_DEPLOY
public static final LocalBuildConfig.BuildType FULL_BUILD_AND_DEPLOY
-
-
Method Detail
-
values
public static LocalBuildConfig.BuildType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LocalBuildConfig.BuildType c : LocalBuildConfig.BuildType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocalBuildConfig.BuildType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-