| Package | Description |
|---|---|
| io.quarkus.builder |
| Modifier and Type | Method and Description |
|---|---|
protected ProduceFlag |
ProduceFlags.castItemOrNull(Object obj) |
protected ProduceFlag |
ProduceFlags.itemOf(int index) |
static ProduceFlag |
ProduceFlag.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProduceFlag[] |
ProduceFlag.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
BuildStepBuilder |
BuildStepBuilder.beforeConsume(Class<? extends BuildItem> type,
ProduceFlag flag)
This build step should complete before any build steps which consume the given item
type are initiated. |
static ProduceFlags |
ProduceFlags.of(ProduceFlag flag) |
BuildStepBuilder |
BuildStepBuilder.produces(Class<? extends BuildItem> type,
ProduceFlag flag)
Similarly to
BuildStepBuilder.beforeConsume(Class), establish that this build step must come before the consumer(s) of the
given item type; however, only one producer may exist for the given item. |
BuildStepBuilder |
BuildStepBuilder.produces(Class<? extends BuildItem> type,
ProduceFlag flag1,
ProduceFlag flag2)
Similarly to
BuildStepBuilder.beforeConsume(Class), establish that this build step must come before the consumer(s) of the
given item type; however, only one producer may exist for the given item. |
Copyright © 2020 JBoss by Red Hat. All rights reserved.