Uses of Class
com.github.shyiko.mysql.binlog.event.EventType
-
Packages that use EventType Package Description com.github.shyiko.mysql.binlog.event com.github.shyiko.mysql.binlog.event.deserialization -
-
Uses of EventType in com.github.shyiko.mysql.binlog.event
Methods in com.github.shyiko.mysql.binlog.event that return EventType Modifier and Type Method Description EventTypeEventHeader. getEventType()EventTypeEventHeaderV4. getEventType()static EventTypeEventType. valueOf(String name)Returns the enum constant of this type with the specified name.static EventType[]EventType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.shyiko.mysql.binlog.event with parameters of type EventType Modifier and Type Method Description static booleanEventType. isDelete(EventType eventType)static booleanEventType. isRowMutation(EventType eventType)static booleanEventType. isUpdate(EventType eventType)static booleanEventType. isWrite(EventType eventType)voidEventHeaderV4. setEventType(EventType eventType) -
Uses of EventType in com.github.shyiko.mysql.binlog.event.deserialization
Methods in com.github.shyiko.mysql.binlog.event.deserialization with parameters of type EventType Modifier and Type Method Description EventDataDeserializerEventDeserializer. getEventDataDeserializer(EventType eventType)voidEventDeserializer. setEventDataDeserializer(EventType eventType, EventDataDeserializer eventDataDeserializer)Constructor parameters in com.github.shyiko.mysql.binlog.event.deserialization with type arguments of type EventType Constructor Description EventDeserializer(EventHeaderDeserializer eventHeaderDeserializer, EventDataDeserializer defaultEventDataDeserializer, Map<EventType,EventDataDeserializer> eventDataDeserializers, Map<Long,TableMapEventData> tableMapEventByTableId)
-