public enum ProjectBuildKind extends java.lang.Enum<ProjectBuildKind> implements IntegralConstant
IncrementalProjectBuilder
Enum Constant and Description |
---|
AUTO |
CLEAN |
FULL |
INCREMENTAL |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ProjectBuildKind |
valueOf(int value) |
static ProjectBuildKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProjectBuildKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static java.util.Set<java.lang.Integer> |
valuesAsIntegers() |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
equals
public static final ProjectBuildKind FULL
IncrementalProjectBuilder.FULL_BUILD
public static final ProjectBuildKind AUTO
IncrementalProjectBuilder.AUTO_BUILD
public static final ProjectBuildKind INCREMENTAL
IncrementalProjectBuilder.INCREMENTAL_BUILD
public static final ProjectBuildKind CLEAN
IncrementalProjectBuilder.CLEAN_BUILD
public static ProjectBuildKind[] values()
for (ProjectBuildKind c : ProjectBuildKind.values()) System.out.println(c);
public static ProjectBuildKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static java.util.Set<java.lang.Integer> valuesAsIntegers()
public static ProjectBuildKind valueOf(int value)
public int getValue()
getValue
in interface IntegralConstant