Package | Description |
---|---|
com.espertech.esper.event.bean |
JavaBean and legacy Java underlying event classes are here.
|
Modifier and Type | Method and Description |
---|---|
InternalEventPropDescriptor |
BeanEventType.SimplePropertyInfo.getDescriptor()
Returns the property info.
|
InternalEventPropDescriptor |
BeanEventType.getIndexedProperty(String propertyName)
Looks up and returns a cached indexed property's descriptor.
|
InternalEventPropDescriptor |
BeanEventType.getMappedProperty(String propertyName)
Looks up and returns a cached mapped property's descriptor.
|
InternalEventPropDescriptor |
BeanEventType.getSimpleProperty(String propertyName)
Looks up and returns a cached simple property's descriptor.
|
protected static InternalEventPropDescriptor |
PropertyListBuilderExplicit.makeFieldDesc(Field field,
String name)
Makes a simple-type event property descriptor based on a reflected field.
|
protected static InternalEventPropDescriptor |
PropertyListBuilderExplicit.makeMethodDesc(Method method,
String name)
Makes an event property descriptor based on a reflected method, considering
the methods parameters to determine if this is an indexed or mapped event property.
|
Modifier and Type | Method and Description |
---|---|
List<InternalEventPropDescriptor> |
PropertyListBuilderPublic.assessProperties(Class clazz) |
List<InternalEventPropDescriptor> |
PropertyListBuilderJavaBean.assessProperties(Class clazz) |
List<InternalEventPropDescriptor> |
PropertyListBuilderExplicit.assessProperties(Class clazz) |
List<InternalEventPropDescriptor> |
PropertyListBuilder.assessProperties(Class clazz)
Introspect the clazz and deterime exposed event properties.
|
static List<InternalEventPropDescriptor> |
PropertyHelper.getProperties(Class clazz)
Introspects the given class and returns event property descriptors for each property found
in the class itself, it's superclasses and all interfaces this class and the superclasses implements.
|
Modifier and Type | Method and Description |
---|---|
protected static void |
PropertyHelper.addIntrospectProperties(Class clazz,
List<InternalEventPropDescriptor> result)
Adds to the given list of property descriptors the properties of the given class
using the Introspector to introspect properties.
|
protected static void |
PropertyHelper.addMappedProperties(Class clazz,
List<InternalEventPropDescriptor> result)
Adds to the given list of property descriptors the mapped properties, ie.
|
protected static void |
PropertyListBuilderExplicit.getExplicitProperties(List<InternalEventPropDescriptor> result,
Class clazz,
ConfigurationEventTypeLegacy legacyConfig)
Populates explicitly-defined properties into the result list.
|
protected static void |
PropertyHelper.removeDuplicateProperties(List<InternalEventPropDescriptor> properties)
Removed duplicate properties using the property name to find unique properties.
|
protected static void |
PropertyHelper.removeJavaProperties(List<InternalEventPropDescriptor> properties)
Remove Java language specific properties from the given list of property descriptors.
|
Constructor and Description |
---|
SimplePropertyInfo(Class clazz,
EventPropertyGetterSPI getter,
InternalEventPropDescriptor descriptor)
Ctor.
|