Uses of Interface
tuwien.auto.calimero.cemi.CEMI

Packages that use CEMI
tuwien.auto.calimero Base package of the Calimero library. 
tuwien.auto.calimero.buffer Support for temporary storage of KNX network messages. 
tuwien.auto.calimero.cemi Offers an interface to the common External Message Interface, cEMI for short. 
tuwien.auto.calimero.knxnetip KNXnet/IP protocols for tunneling, device management and routing. 
tuwien.auto.calimero.knxnetip.servicetype Contains service types used by KNXnet/IP protocols. 
tuwien.auto.calimero.link.event Listeners and events used together with network links. 
 

Uses of CEMI in tuwien.auto.calimero
 

Methods in tuwien.auto.calimero that return CEMI
 CEMI FrameEvent.getFrame()
          Returns the cEMI frame, if supplied at event creation.
 

Constructors in tuwien.auto.calimero with parameters of type CEMI
FrameEvent(java.lang.Object source, CEMI frame)
          Creates a new frame event for frame.
 

Uses of CEMI in tuwien.auto.calimero.buffer
 

Methods in tuwien.auto.calimero.buffer with parameters of type CEMI
 void CommandFilter.accept(CEMI frame, Configuration c)
          Applies command based filter rules on frame.
 void StateFilter.accept(CEMI frame, Configuration c)
          Applies state based filter rules on frame.
 void Configuration.NetworkFilter.accept(CEMI frame, Configuration c)
          Invoked on occurrence of a new KNX messages, supplied as cEMI frame.
 

Uses of CEMI in tuwien.auto.calimero.cemi
 

Classes in tuwien.auto.calimero.cemi that implement CEMI
 class CEMIBusMon
          A cEMI busmonitor indication message.
 class CEMIDevMgmt
          A cEMI device management message.
 class CEMILData
          A cEMI link layer data message (L-Data).
 class CEMILDataEx
          A cEMI link layer data message (L-Data).
 

Methods in tuwien.auto.calimero.cemi that return CEMI
static CEMI CEMIFactory.copy(CEMI original)
          Does a lazy copy of the supplied cEMI frame.
static CEMI CEMIFactory.create(byte[] data, int offset, int length)
          Creates a new cEMI message out of the given data byte stream.
static CEMI CEMIFactory.create(IndividualAddress src, KNXAddress dst, CEMILData original, boolean extended)
          Creates a new cEMI L-Data message with information provided by original, and adjusts source and destination address to match the supplied addresses.
static CEMI CEMIFactory.create(int msgCode, byte[] data, CEMI original)
          Creates a new cEMI message with information provided by original, and adjusts it to match the supplied msgCode and data.
static CEMI CEMIFactory.createFromEMI(byte[] frame)
          Creates a new cEMI message out of the supplied EMI frame.
 

Methods in tuwien.auto.calimero.cemi with parameters of type CEMI
static CEMI CEMIFactory.copy(CEMI original)
          Does a lazy copy of the supplied cEMI frame.
static CEMI CEMIFactory.create(int msgCode, byte[] data, CEMI original)
          Creates a new cEMI message with information provided by original, and adjusts it to match the supplied msgCode and data.
 

Uses of CEMI in tuwien.auto.calimero.knxnetip
 

Methods in tuwien.auto.calimero.knxnetip with parameters of type CEMI
 void KNXnetIPTunnel.send(CEMI frame, KNXnetIPConnection.BlockingMode mode)
          Sends a cEMI frame to the remote server communicating with this endpoint.
 void KNXnetIPRouter.send(CEMI frame, KNXnetIPConnection.BlockingMode mode)
          Sends a cEMI frame to the joined multicast group.
 void KNXnetIPDevMgmt.send(CEMI frame, KNXnetIPConnection.BlockingMode mode)
          Sends a cEMI device management frame to the remote server communicating with this endpoint.
 void KNXnetIPConnection.send(CEMI frame, KNXnetIPConnection.BlockingMode mode)
          Sends a cEMI frame to the remote server communicating with this endpoint.
 

Uses of CEMI in tuwien.auto.calimero.knxnetip.servicetype
 

Methods in tuwien.auto.calimero.knxnetip.servicetype that return CEMI
 CEMI ServiceRequest.getCEMI()
          Returns the cEMI frame carried by the request.
 CEMI RoutingIndication.getCEMI()
          Returns the cEMI frame contained in the indication.
 

Constructors in tuwien.auto.calimero.knxnetip.servicetype with parameters of type CEMI
RoutingIndication(CEMI frame)
          Creates a routing indication carrying the given cEMI frame.
ServiceRequest(int serviceType, int channelID, int seqNumber, CEMI frame)
          Creates a new service request.
 

Uses of CEMI in tuwien.auto.calimero.link.event
 

Constructors in tuwien.auto.calimero.link.event with parameters of type CEMI
MonitorFrameEvent(java.lang.Object source, CEMI frame)
          Creates a new monitor frame event with the indication frame.
MonitorFrameEvent(java.lang.Object source, CEMI frame, RawFrame rawFrame)
          Creates a new monitor frame event with the indication frame and the decoded raw frame.