Class ValueReferenceResolver

java.lang.Object
org.apache.myfaces.core.api.shared.ValueReferenceResolver

public class ValueReferenceResolver extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static jakarta.el.ValueReference
    resolve(jakarta.el.ValueExpression valueExpression, jakarta.el.ELContext elCtx)
    This method can be used to extract the ValueReference from the given ValueExpression.
    static jakarta.el.ValueReference
    resolve(jakarta.el.ValueExpression valueExpression, FacesContext context)
    Get the ValueReference from the ValueExpression.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ValueReferenceResolver

      public ValueReferenceResolver()
  • Method Details

    • resolve

      public static jakarta.el.ValueReference resolve(jakarta.el.ValueExpression valueExpression, FacesContext context)
      Get the ValueReference from the ValueExpression.
      Parameters:
      valueExpression - The ValueExpression for value.
      context - The FacesContext.
      Returns:
      A ValueReferenceWrapper with the necessary information about the ValueReference.
    • resolve

      public static jakarta.el.ValueReference resolve(jakarta.el.ValueExpression valueExpression, jakarta.el.ELContext elCtx)
      This method can be used to extract the ValueReference from the given ValueExpression.
      Parameters:
      valueExpression - The ValueExpression to resolve.
      elCtx - The ELContext, needed to parse and execute the expression.
      Returns:
      The ValueReferenceWrapper.