Enum ABuildKind
- java.lang.Object
-
- java.lang.Enum<ABuildKind>
-
- org.faktorips.devtools.abstraction.ABuildKind
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ABuildKind>
public enum ABuildKind extends java.lang.Enum<ABuildKind>
There are different kinds of build jobs:- A
full buildbuilds every applicable item in a project. - An
incremental buildbuilds only items affected by changes since a previous build. - A
clean builddiscards previous build results and then performs aFULL. - A
auto buildoperates like an incremental build, but is triggered automatically whenever a resources changes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOCLEANFULLINCREMENTAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ABuildKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ABuildKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL
public static final ABuildKind FULL
-
INCREMENTAL
public static final ABuildKind INCREMENTAL
-
CLEAN
public static final ABuildKind CLEAN
-
AUTO
public static final ABuildKind AUTO
-
-
Method Detail
-
values
public static ABuildKind[] 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 (ABuildKind c : ABuildKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ABuildKind valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-