Top Description Constructors Methods
jakarta.faces.flow

public abstract Class Parameter

extends Object
Class Inheritance
Imports
jakarta.el.ValueExpression

Represents a parameter in any of several places where parameters are needed when processing flows.

Since
2.2

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public abstract String

Returns:

the name of the parameter
getName
()

Return the name of the parameter

public abstract ValueExpression

Returns:

a ValueExpression for the value of the parameter
getValue
()

Return a ValueExpression for the value of the parameter.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Constructor Detail

Parameterback to summary
public Parameter()

Method Detail

getNameback to summary
public abstract String getName()

Return the name of the parameter

Returns:String

the name of the parameter

Since
2.2
getValueback to summary
public abstract ValueExpression getValue()

Return a ValueExpression for the value of the parameter. Depending on the context, this expression may only ever be evaluated in a "get" operation.

Returns:ValueExpression

a ValueExpression for the value of the parameter

Since
2.2