public enum ProduceFlag extends Enum<ProduceFlag>
| Enum Constant and Description |
|---|
OVERRIDABLE
Only produce this
SimpleBuildItem if no other build steps produce it. |
WEAK
Only produce this item weakly: if only weak items produced by a build step are consumed, the step will not be included.
|
| Modifier and Type | Method and Description |
|---|---|
static ProduceFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProduceFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProduceFlag WEAK
public static final ProduceFlag OVERRIDABLE
SimpleBuildItem if no other build steps produce it.public static ProduceFlag[] values()
for (ProduceFlag c : ProduceFlag.values()) System.out.println(c);
public static ProduceFlag 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 JBoss by Red Hat. All rights reserved.