Uses of Class
net.esper.event.EventAdapterException

Packages that use EventAdapterException
net.esper.event This package defines the Esper Client event API. 
 

Uses of EventAdapterException in net.esper.event
 

Methods in net.esper.event that throw EventAdapterException
 EventBean EventAdapterServiceBase.adapterForMap(Map event, String eventTypeAlias)
           
 EventBean EventAdapterService.adapterForMap(Map event, String eventTypeAlias)
          Wrap the Map-type event returning an EventBean using the event type alias name to identify the EventType that the event should carry.
 EventType EventAdapterServiceImpl.addBeanType(String eventTypeAlias, Class clazz)
           
 EventType EventAdapterService.addBeanType(String eventTypeAlias, Class clazz)
          Add an event type with the given alias and Java class.
 EventType EventAdapterServiceImpl.addBeanType(String eventTypeAlias, String className)
           
 EventType EventAdapterService.addBeanType(String eventTypeAlias, String fullyQualClassName)
          Add an event type with the given alias and Java fully-qualified class name.
 EventType EventAdapterServiceBase.addBeanTypeByAliasAndClassName(String eventTypeAlias, String fullyQualClassName)
          Add an event type for the given Java class name.
 EventType EventAdapterServiceBase.addBeanTypeByAliasAndClazz(String eventTypeAlias, Class clazz)
          Add an alias and class as an event type.
 EventType EventAdapterServiceBase.addMapType(String eventTypeAlias, Map<String,Class> propertyTypes)
           
 EventType EventAdapterService.addMapType(String eventTypeAlias, Map<String,Class> propertyTypes)
          Add an event type with the given alias and a given set of properties.
 EventType EventAdapterServiceBase.addWrapperType(String eventTypeAlias, EventType underlyingEventType, Map<String,Class> propertyTypes)
           
 EventType EventAdapterService.addWrapperType(String eventTypeAlias, EventType underlyingEventType, Map<String,Class> propertyTypes)
          Add an event type with the given alias and the given underlying event type, as well as the additional given properties.
 EventType EventAdapterServiceBase.createAnonymousMapType(Map<String,Class> propertyTypes)
           
 EventType EventAdapterServiceBase.createAnonymousWrapperType(EventType underlyingEventType, Map<String,Class> propertyTypes)
           
 EventType EventAdapterService.createAnonymousWrapperType(EventType underlyingEventType, Map<String,Class> propertyTypes)
          Create a new anonymous event type with the given underlying event type, as well as the additional given properties.