public static enum Incremental.Configuration extends Enum<Incremental.Configuration>
Enum Constant and Description |
---|
consider |
ignore
Indicates that annotated configuration parameter should be ignored by incremental build
implementation.
|
Modifier and Type | Method and Description |
---|---|
static Incremental.Configuration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Incremental.Configuration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Incremental.Configuration consider
public static final Incremental.Configuration ignore
public static Incremental.Configuration[] values()
for (Incremental.Configuration c : Incremental.Configuration.values()) System.out.println(c);
public static Incremental.Configuration valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.