Class ValueReference
java.lang.Object
jakarta.el.ValueReference
- All Implemented Interfaces:
Serializable
Holds a reference to a resolved property, consisting of a base object and a property identifier. This class is
used to capture the result of property resolution during EL evaluation, allowing the caller to perform additional
operations on the resolved property.
- Since:
- EL 2.2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionValueReference(Object base, Object property) Constructs a new value reference with the given base object and property. -
Method Summary
Modifier and TypeMethodDescriptiongetBase()Returns the base object on which the property was resolved.Returns the property identifier.
-
Constructor Details
-
ValueReference
-
-
Method Details
-
getBase
Returns the base object on which the property was resolved.- Returns:
- The base object
-
getProperty
-