Uses of Class
org.patternfly.component.wizard.WizardStep
Packages that use WizardStep
-
Uses of WizardStep in org.patternfly.component.wizard
Subclasses with type arguments of type WizardStep in org.patternfly.component.wizardClasses in org.patternfly.component.wizard that implement interfaces with type arguments of type WizardStepModifier and TypeClassDescriptionclassA wizard provides a guided workflow that offers a path to complete a task, create an object or objects, or finish a series of steps for some other outcome.classclassclassclassMethods in org.patternfly.component.wizard that return WizardStepModifier and TypeMethodDescriptionWizard.currentStep()WizardStep.disabled(boolean disabled) Wizard.firstStep()Wizard.lastStep()WizardStep.next()WizardStep.nextIf(WizardStepNextHandler handler) Configures a callback to handle the transition to the next step in a wizard workflow.WizardStep.nextIfPromised(WizardStepNextPromise promise) Associates a promise to handle the transition when navigating to the next step in a wizard workflow.WizardStep.onEnter(WizardStepEnterHandler handler) WizardStep.onLeave(WizardStepLeaveHandler handler) WizardStep.previous()WizardStep.previousIf(WizardStepPreviousHandler handler) Assigns a callback to be executed when navigating to the previous step in a wizard workflow.WizardStep.previousIfPromised(WizardStepPreviousPromise promise) Associates a promise to handle the transition when navigating to the previous step in a wizard workflow.<T> WizardStepWizardStep.that()static WizardStepWizardStep.wizardStep(String identifier, String title) static WizardStepWizardStep.wizardStep(String identifier, String title, WizardStepType type) Methods in org.patternfly.component.wizard that return types with arguments of type WizardStepMethods in org.patternfly.component.wizard with parameters of type WizardStepModifier and TypeMethodDescriptionWizard.add(WizardStep item) voidWizardStepEnterHandler.onEnter(Wizard wizard, WizardStep step) voidWizardStepLeaveHandler.onLeave(Wizard wizard, WizardStep step) booleanWizardStepNextHandler.onNext(Wizard wizard, WizardStep current, WizardStep next) Invoked when advancing from the current wizard step to the next step.WizardStepNextPromise.onNext(Wizard wizard, WizardStep current, WizardStep next) Called when the user attempts to navigate to the next step.booleanWizardStepPreviousHandler.onPrevious(Wizard wizard, WizardStep current, WizardStep previous) Called when transitioning to the previous step in a wizard workflow.WizardStepPreviousPromise.onPrevious(Wizard wizard, WizardStep current, WizardStep previous) Called when the user attempts to navigate to the previous step.voidWizardStepChangeHandler.onStepChange(Wizard wizard, WizardStep previous, WizardStep current) Handles the transition from one step to another in a wizard flow.voidWizard.select(WizardStep step) Method parameters in org.patternfly.component.wizard with type arguments of type WizardStepModifier and TypeMethodDescriptionWizard.onAdd(BiConsumer<Wizard, WizardStep> onAdd) Wizard.onRemove(BiConsumer<Wizard, WizardStep> onRemove)