Method Summary
All Methods Instance Methods Abstract Methods
Construct an event bean for a given Avro GenericData.Record using the event type name to look up the Avro event type
Construct an event bean for a given bean (Object, POJO) using the class of the object to determine the Bean-only event type (not for Map/Object-Array/Avro/XML events)
Construct an event bean for a given XML-DOM using the node root node name to look up the XML-DOM event type
Construct an event bean for a given Map using the event type name to look up the Map event type
Construct an event bean for a given Object-Array using the event type name to look up the Object-Array event type
Look up an event type by name,
Method Details
getExistsTypeByName
Look up an event type by name,
Parameters:
eventTypeName
- to look up
Returns:
event type or null if not found
adapterForBean
Construct an event bean for a given bean (Object, POJO) using the class of the object to determine the Bean-only event type (not for Map/Object-Array/Avro/XML events)
Parameters:
theEvent
- event underlying
eventTypeName
- event type name
Returns:
event bean
adapterForAvro
Construct an event bean for a given Avro GenericData.Record using the event type name to look up the Avro event type
Parameters:
avroGenericDataDotRecord
- event underlying
eventTypeName
- name of the Avro event type
Returns:
event bean
adapterForObjectArray
Construct an event bean for a given Object-Array using the event type name to look up the Object-Array event type
Parameters:
theEvent
- event underlying
eventTypeName
- name of the Object-Array event type
Returns:
event bean
adapterForDOM
Construct an event bean for a given XML-DOM using the node root node name to look up the XML-DOM event type
Parameters:
node
- event underlying
eventTypeName
- event type name
Returns:
event bean