Uses of Interface
net.esper.event.property.Property

Packages that use Property
net.esper.event.property Parsers and business objects to handle nested, indexed, mapped or generally complex properties for use in JavaBean access 
 

Uses of Property in net.esper.event.property
 

Classes in net.esper.event.property that implement Property
 class IndexedProperty
          Represents an indexed property or array property, ie.
 class MappedProperty
          Represents a mapped property or array property, ie.
 class NestedProperty
          This class represents a nested property, each nesting level made up of a property instance that can be of type indexed, mapped or simple itself.
 class PropertyBase
          All properties have a property name and this is the abstract base class that serves up the property name.
 class SimpleProperty
          Represents a simple property of a given name.
 

Methods in net.esper.event.property that return Property
static Property PropertyParser.parse(String propertyName, BeanEventAdapter beanEventAdapter)
          Parse the given property name returning a Property instance for the property.
 

Methods in net.esper.event.property that return types with arguments of type Property
 List<Property> NestedProperty.getProperties()
          Returns the list of property instances making up the nesting levels.
 

Constructor parameters in net.esper.event.property with type arguments of type Property
NestedProperty(List<Property> properties, BeanEventAdapter beanEventAdapter)
          Ctor.