Uses of Class
org.patternfly.component.progressstepper.ProgressStep
Packages that use ProgressStep
-
Uses of ProgressStep in org.patternfly.component.progressstepper
Subclasses with type arguments of type ProgressStep in org.patternfly.component.progressstepperModifier and TypeClassDescriptionclassRepresents a single step in a progress stepper component.Classes in org.patternfly.component.progressstepper that implement interfaces with type arguments of type ProgressStepModifier and TypeClassDescriptionclassRepresents a single step in a progress stepper component.classRepresents a single step in a progress stepper component.classRepresents a single step in a progress stepper component.classA progress stepper displays a timeline of tasks in a workflow and tracks a user's progress through the workflow.Methods in org.patternfly.component.progressstepper that return ProgressStepModifier and TypeMethodDescriptionProgressStep.description(String description) static ProgressStepProgressStep.progressStep(String identifier) static ProgressStepProgressStep.progressStep(String identifier, String text) ProgressStep.removeIcon()ProgressStep.removePopover()ProgressStep.that()ProgressStep.variant(ProgressStepVariant progressStepVariant) Methods in org.patternfly.component.progressstepper that return types with arguments of type ProgressStepMethods in org.patternfly.component.progressstepper with parameters of type ProgressStepModifier and TypeMethodDescriptionProgressStepper.add(ProgressStep item) voidProgressStepper.updateItem(ProgressStep item) Method parameters in org.patternfly.component.progressstepper with type arguments of type ProgressStepModifier and TypeMethodDescriptionProgressStepper.first(Consumer<ProgressStep> actionForTheFirstStep, Consumer<ProgressStep> actionForThePreviousCurrentStep) Selects the first step (index 0) if available.ProgressStepper.last(Consumer<ProgressStep> actionForTheLastStep, Consumer<ProgressStep> actionForThePreviousCurrentStep) Selects the last step (index size-1) if present.ProgressStepper.next(BiConsumer<Optional<ProgressStep>, Integer> actionForTheNewCurrentWithIndex, Consumer<ProgressStep> actionForThePreviousCurrent) Moves one step forward with callbacks.ProgressStepper.next(BiConsumer<Optional<ProgressStep>, Integer> actionForTheNewCurrentWithIndex, Consumer<ProgressStep> actionForThePreviousCurrent) Moves one step forward with callbacks.ProgressStepper.onAdd(AddItemHandler<ProgressStepper, ProgressStep> onAdd) ProgressStepper.onRemove(RemoveItemHandler<ProgressStepper, ProgressStep> onRemove) ProgressStepper.onUpdate(UpdateItemHandler<ProgressStepper, ProgressStep> onUpdate) ProgressStepper.previous(BiConsumer<Optional<ProgressStep>, Integer> actionForTheNewCurrentStepWithIndex, Consumer<ProgressStep> actionForThePreviousCurrentStep) Moves one step backward with callbacks.ProgressStepper.previous(BiConsumer<Optional<ProgressStep>, Integer> actionForTheNewCurrentStepWithIndex, Consumer<ProgressStep> actionForThePreviousCurrentStep) Moves one step backward with callbacks.ProgressStepper.setupSteps(BiConsumer<ProgressStep, Integer> stepConsumerWithIndex) Applies the provided consumer to each step with its index in insertion order.