Uses of Class
jakarta.el.ExpressionFactory
-
Packages that use ExpressionFactory Package Description jakarta.el Provides the API for Jakarta Expression Language 5.0jakarta.enterprise.inject.spi The portable extension integration SPI.jakarta.faces.application jakarta.faces.view.facelets jakarta.servlet.jsp -
-
Uses of ExpressionFactory in jakarta.el
Methods in jakarta.el that return ExpressionFactory Modifier and Type Method Description static ExpressionFactory
ELManager. getExpressionFactory()
Return the ExpressionFactory instance used for Jakarta Expression Language evaluations.static ExpressionFactory
ExpressionFactory. newInstance()
Creates a new instance of aExpressionFactory
.static ExpressionFactory
ExpressionFactory. newInstance(Properties properties)
Create a new instance of aExpressionFactory
, with optional properties.Constructors in jakarta.el with parameters of type ExpressionFactory Constructor Description StandardELContext(ExpressionFactory factory)
Construct a default ELContext for a stand-alone environment. -
Uses of ExpressionFactory in jakarta.enterprise.inject.spi
Methods in jakarta.enterprise.inject.spi that return ExpressionFactory Modifier and Type Method Description ExpressionFactory
BeanManager. wrapExpressionFactory(ExpressionFactory expressionFactory)
Returns a wrapperExpressionFactory
that delegatesMethodExpression
andValueExpression
creation to the givenExpressionFactory
.Methods in jakarta.enterprise.inject.spi with parameters of type ExpressionFactory Modifier and Type Method Description ExpressionFactory
BeanManager. wrapExpressionFactory(ExpressionFactory expressionFactory)
Returns a wrapperExpressionFactory
that delegatesMethodExpression
andValueExpression
creation to the givenExpressionFactory
. -
Uses of ExpressionFactory in jakarta.faces.application
Methods in jakarta.faces.application that return ExpressionFactory Modifier and Type Method Description ExpressionFactory
Application. getExpressionFactory()
Return theExpressionFactory
instance for this application.ExpressionFactory
ApplicationWrapper. getExpressionFactory()
The default behavior of this method is to callApplication.getExpressionFactory()
on the wrappedApplication
object. -
Uses of ExpressionFactory in jakarta.faces.view.facelets
Methods in jakarta.faces.view.facelets that return ExpressionFactory Modifier and Type Method Description abstract ExpressionFactory
FaceletContext. getExpressionFactory()
The ExpressionFactory to use within the Facelet this context is executing upon. -
Uses of ExpressionFactory in jakarta.servlet.jsp
Methods in jakarta.servlet.jsp that return ExpressionFactory Modifier and Type Method Description ExpressionFactory
JspApplicationContext. getExpressionFactory()
Returns a factory used to createValueExpression
s andMethodExpression
s so that EL expressions can be parsed and evaluated.
-