public abstract class DynamicPropertyGetterBase extends Object implements BeanEventPropertyGetter
Constructor and Description |
---|
DynamicPropertyGetterBase(EventAdapterService eventAdapterService) |
Modifier and Type | Method and Description |
---|---|
static Object |
cacheAndCall(CopyOnWriteArrayList<DynamicPropertyDescriptor> cache,
DynamicPropertyGetterBase getter,
Object object,
EventAdapterService eventAdapterService)
NOTE: Code-generation-invoked method, method name and parameter order matters
|
static boolean |
cacheAndExists(CopyOnWriteArrayList<DynamicPropertyDescriptor> cache,
DynamicPropertyGetterBase getter,
Object object,
EventAdapterService eventAdapterService)
NOTE: Code-generation-invoked method, method name and parameter order matters
|
protected abstract Object |
call(DynamicPropertyDescriptor descriptor,
Object underlying)
Call the getter to obtains the return result object, or null if no such method exists.
|
CodegenExpression |
codegenEventBeanExists(CodegenExpression beanExpression,
CodegenContext context) |
CodegenExpression |
codegenEventBeanFragment(CodegenExpression beanExpression,
CodegenContext context) |
CodegenExpression |
codegenEventBeanGet(CodegenExpression beanExpression,
CodegenContext context) |
CodegenExpression |
codegenUnderlyingExists(CodegenExpression underlyingExpression,
CodegenContext context) |
CodegenExpression |
codegenUnderlyingFragment(CodegenExpression underlyingExpression,
CodegenContext context) |
CodegenExpression |
codegenUnderlyingGet(CodegenExpression underlyingExpression,
CodegenContext context) |
protected abstract Method |
determineMethod(Class clazz)
To be implemented to return the method required, or null to indicate an appropriate method could not be found.
|
Object |
get(EventBean event)
Return the value for the property in the event object specified when the instance was obtained.
|
Object |
getBeanProp(Object object)
Returns the property as an object.
|
Class |
getBeanPropType() |
Object |
getFragment(EventBean eventBean)
|
Class |
getTargetType() |
boolean |
isBeanExistsProperty(Object object)
Returns true if the dynamic property exists.
|
boolean |
isExistsProperty(EventBean eventBean)
Returns true if the property exists, or false if the type does not have such a property.
|
public DynamicPropertyGetterBase(EventAdapterService eventAdapterService)
protected abstract Method determineMethod(Class clazz)
clazz
- to search for a matching methodprotected abstract Object call(DynamicPropertyDescriptor descriptor, Object underlying)
descriptor
- provides method information for the classunderlying
- is the underlying object to ask for the property valuepublic static Object cacheAndCall(CopyOnWriteArrayList<DynamicPropertyDescriptor> cache, DynamicPropertyGetterBase getter, Object object, EventAdapterService eventAdapterService)
cache
- cachegetter
- getterobject
- objecteventAdapterService
- event serverpublic static boolean cacheAndExists(CopyOnWriteArrayList<DynamicPropertyDescriptor> cache, DynamicPropertyGetterBase getter, Object object, EventAdapterService eventAdapterService)
cache
- cachegetter
- getterobject
- objecteventAdapterService
- event serverpublic Object getBeanProp(Object object) throws PropertyAccessException
BeanEventPropertyGetter
getBeanProp
in interface BeanEventPropertyGetter
object
- to evaluatePropertyAccessException
- if access failedpublic Class getTargetType()
getTargetType
in interface BeanEventPropertyGetter
public boolean isBeanExistsProperty(Object object)
BeanEventPropertyGetter
isBeanExistsProperty
in interface BeanEventPropertyGetter
object
- to evaluatepublic final Object get(EventBean event) throws PropertyAccessException
EventPropertyGetter
get
in interface EventPropertyGetter
event
- is the event to get the value of a property fromPropertyAccessException
- to indicate that property access failedpublic boolean isExistsProperty(EventBean eventBean)
EventPropertyGetter
Useful for dynamic properties of the syntax "property?" and the dynamic nested/indexed/mapped versions. Dynamic nested properties follow the syntax "property?.nested" which is equivalent to "property?.nested?". If any of the properties in the path of a dynamic nested property return null, the dynamic nested property does not exists and the method returns false.
For non-dynamic properties, this method always returns true since a getter would not be available unless
isExistsProperty
in interface EventPropertyGetter
eventBean
- is the event to check if the dynamic property existspublic Class getBeanPropType()
getBeanPropType
in interface BeanEventPropertyGetter
public CodegenExpression codegenEventBeanGet(CodegenExpression beanExpression, CodegenContext context)
codegenEventBeanGet
in interface EventPropertyGetterSPI
public CodegenExpression codegenEventBeanExists(CodegenExpression beanExpression, CodegenContext context)
codegenEventBeanExists
in interface EventPropertyGetterSPI
public CodegenExpression codegenEventBeanFragment(CodegenExpression beanExpression, CodegenContext context)
codegenEventBeanFragment
in interface EventPropertyGetterSPI
public CodegenExpression codegenUnderlyingGet(CodegenExpression underlyingExpression, CodegenContext context)
codegenUnderlyingGet
in interface EventPropertyGetterSPI
public CodegenExpression codegenUnderlyingExists(CodegenExpression underlyingExpression, CodegenContext context)
codegenUnderlyingExists
in interface EventPropertyGetterSPI
public CodegenExpression codegenUnderlyingFragment(CodegenExpression underlyingExpression, CodegenContext context)
codegenUnderlyingFragment
in interface EventPropertyGetterSPI
public Object getFragment(EventBean eventBean)
EventPropertyGetter
EventBean
or array of EventBean
for a property name or property expression.
For use with properties whose value is itself an event or whose value can be represented as an event by the underlying event representation.
The EventType
of the EventBean
instance(s) returned by this method can be determined by
EventType.getFragmentType(String)
. Use EventPropertyDescriptor
to
obtain a list of properties that return fragments from an event type.
Returns null if the property value is null or the property value cannot be represented as a fragment by the underlying representation.
getFragment
in interface EventPropertyGetter
eventBean
- is the event to get the fragment value of a property