Uses of Class
io.quarkus.builder.item.BuildItem
Packages that use BuildItem
-
Uses of BuildItem in io.quarkus.builder
Methods in io.quarkus.builder with type parameters of type BuildItemModifier and TypeMethodDescription<T extends BuildItem>
voidProduce the given item.<T extends BuildItem>
BuildExecutionBuilderProvide an initial item.<T extends BuildItem>
BuildExecutionBuilderBuildExecutionBuilder.produce(T item) Provide an initial item.Methods in io.quarkus.builder that return types with arguments of type BuildItemModifier and TypeMethodDescriptionBuildExecutionBuilder.getInitialMulti()BuildExecutionBuilder.getInitialSingle()(package private) ConcurrentHashMap<ItemId, List<BuildItem>> Execution.getMultis()(package private) ConcurrentHashMap<ItemId, BuildItem> Execution.getSingles()ItemId.getType()Methods in io.quarkus.builder with parameters of type BuildItemModifier and TypeMethodDescriptionvoidBuildMetrics.buildItemProduced(BuildItem buildItem) voidProduce the given item.Method parameters in io.quarkus.builder with type arguments of type BuildItemModifier and TypeMethodDescriptionDeclare a final item that will be consumable after the build step chain completes.BuildChainBuilder.addInitial(Class<? extends BuildItem> type) Declare an initial item that will be provided to build steps in the chain.BuildStepBuilder.afterProduce(Class<? extends BuildItem> type) This build step should be initiated after any build steps which produce the given itemtypeare completed.BuildStepBuilder.beforeConsume(Class<? extends BuildItem> type) This build step should complete before any build steps which consume the given itemtypeare initiated.BuildStepBuilder.beforeConsume(Class<? extends BuildItem> type, ProduceFlag flag) This build step should complete before any build steps which consume the given itemtypeare initiated.This build step consumes the given produced item.BuildStepBuilder.consumes(Class<? extends BuildItem> type, ConsumeFlags flags) This build step consumes the given produced item.Similarly toBuildStepBuilder.beforeConsume(Class), establish that this build step must come before the consumer(s) of the given itemtype; however, only oneproducermay exist for the given item.BuildStepBuilder.produces(Class<? extends BuildItem> type, ProduceFlag flag) Similarly toBuildStepBuilder.beforeConsume(Class), establish that this build step must come before the consumer(s) of the given itemtype; however, only oneproducermay exist for the given item.BuildStepBuilder.produces(Class<? extends BuildItem> type, ProduceFlag flag1, ProduceFlag flag2) Similarly toBuildStepBuilder.beforeConsume(Class), establish that this build step must come before the consumer(s) of the given itemtype; however, only oneproducermay exist for the given item.BuildStepBuilder.produces(Class<? extends BuildItem> type, ProduceFlags flags) Similarly toBuildStepBuilder.beforeConsume(Class), establish that this build step must come before the consumer(s) of the given itemtype; however, only oneproducermay exist for the given item.Constructor parameters in io.quarkus.builder with type arguments of type BuildItemModifierConstructorDescription(package private)BuildResult(ConcurrentHashMap<ItemId, BuildItem> simpleItems, ConcurrentHashMap<ItemId, List<BuildItem>> multiItems, Set<ItemId> finalIds, List<Diagnostic> diagnostics, long nanos, BuildMetrics metrics) (package private) -
Uses of BuildItem in io.quarkus.builder.item
Subclasses of BuildItem in io.quarkus.builder.itemModifier and TypeClassDescriptionclassAn empty build item.classA build item that may be produced multiple times, and consumed as aList.classA single-valued build item which is identified by its type.