Package org.apache.commons.jexl3.internal.introspection
package org.apache.commons.jexl3.internal.introspection
Provides low-level introspective services.
This internal package is not intended for public usage and there is no guarantee that its public classes or methods will remain as is in subsequent versions.
The IntrospectorBase, ClassMap, MethodKey, MethodMap form the base of the introspection service. They allow describing classes and their methods, keeping them in a cache (@see IntrospectorBase) to speed up property getters/setters and method discovery used during expression evaluation.
The cache materialized in Introspector creates one entry per class containing a map of all accessible public methods keyed by name and signature.
-
ClassDescriptionAbstract class that is used to execute an arbitrary method that is introspected.Abstract class that is used to execute an arbitrary 'get' method.Abstract class that is used to execute an arbitrary method.Abstract class that is used to execute an arbitrary 'set' method.An Iterator wrapper for an Object[].A class that wraps an array within an AbstractList.Specialized executor to get a boolean property from an object.A cache of introspection information for a specific class instance.Utility for Java9+ backport in Java8 of class and module related methods.A JexlMethod that wraps a constructor.Specialized executor to get a property from an object.Specialized executor to set a property of an object.An Iterator wrapper for an Enumeration.A JexlPropertyGet for public fields.A JexlPropertySet for public fields.Abstract an indexed property container.A generic indexed property container, exposes get(key) and set(key, value) and solves method call dynamically based on arguments.This basic function of this class is to return a Method object for a particular class given the name of a method and the parameters to the method in the form of an Object[].A Constructor get cache-miss.Specialized executor to get a property from a List or array.Specialized executor to set a property in a List or array.Specialized executor to get a property from a Map.Specialized executor to set a property in a Map.Specialized executor to invoke a method on an object.A method key usable by the introspector cache.Simple distinguishable exception, used when we run across ambiguous overloading.Checks whether an element (ctor, field or method) is visible by JEXL introspection.Equivalent of @NoJexl on a ctor, a method or a field in a class.Equivalent of @NoJexl on a class in a package.A crude parser to configure permissions akin to NoJexl annotations.Specialized executor to get a property from an object.Specialized executor to set a property in an object.An uberspect that controls usage of properties, methods and constructors through a sandbox.Implementation of Uberspect to provide the default introspective functionality of JEXL.