Uses of Class
tuwien.auto.calimero.KNXAddress

Packages that use KNXAddress
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.link Link interface to access a KNX network. 
tuwien.auto.calimero.link.medium Contains setting types storing necessary KNX device and medium information, and KNX message frame types for different KNX communication media. 
tuwien.auto.calimero.mgmt Contains KNX property and management services. 
 

Uses of KNXAddress in tuwien.auto.calimero
 

Subclasses of KNXAddress in tuwien.auto.calimero
 class GroupAddress
          Represents an immutable KNX group address.
 class IndividualAddress
          Represents an immutable KNX individual address.
 

Methods in tuwien.auto.calimero that return KNXAddress
static KNXAddress KNXAddress.create(java.lang.String address)
          Creates a KNX address from a string address representation.
static KNXAddress KNXAddress.create(XMLReader r)
          Creates a KNX address from xml input.
 

Methods in tuwien.auto.calimero with parameters of type KNXAddress
static java.lang.String DataUnitBuilder.decode(byte[] tpdu, KNXAddress dst)
          Decodes a protocol data unit into a textual representation.
static java.lang.String DataUnitBuilder.decodeTPCI(int tpci, KNXAddress dst)
          Decodes a transport layer protocol control information into a textual representation.
 

Uses of KNXAddress in tuwien.auto.calimero.buffer
 

Methods in tuwien.auto.calimero.buffer with parameters of type KNXAddress
 CEMILData CommandFilter.request(KNXAddress dst, Configuration c)
          Returns the next available indication for the specified KNX address.
 CEMILData StateFilter.request(KNXAddress dst, Configuration c)
           
 CEMILData Configuration.RequestFilter.request(KNXAddress dst, Configuration c)
          Requests data for address dst from the network buffer.
 

Constructors in tuwien.auto.calimero.buffer with parameters of type KNXAddress
LDataObject(KNXAddress key, java.lang.Object value)
          Creates a LDataObject set to key addrKey and holding value.
 

Uses of KNXAddress in tuwien.auto.calimero.cemi
 

Methods in tuwien.auto.calimero.cemi that return KNXAddress
 KNXAddress CEMILData.getDestination()
          Returns the KNX destination address.
 

Methods in tuwien.auto.calimero.cemi with parameters of type KNXAddress
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.
 

Constructors in tuwien.auto.calimero.cemi with parameters of type KNXAddress
CEMILData(int msgCode, IndividualAddress src, KNXAddress dst, byte[] tpdu, Priority p)
          Creates a L-Data message with most control information set to default values.
CEMILData(int msgCode, IndividualAddress src, KNXAddress dst, byte[] tpdu, Priority p, boolean confirm)
          Creates a L-Data message, mainly for confirmation.
CEMILData(int msgCode, IndividualAddress src, KNXAddress dst, byte[] tpdu, Priority p, boolean repeat, boolean broadcast, boolean ack, int hopCount)
          Creates a L-Data message with full customization for control information.
CEMILData(int msgCode, IndividualAddress src, KNXAddress dst, byte[] tpdu, Priority p, boolean repeat, int hopCount)
          Creates a L-Data message, mainly for TP1 media.
CEMILDataEx(int msgCode, IndividualAddress src, KNXAddress dst, byte[] tpdu, Priority p)
          Creates a L-Data message with most control information set to default values.
CEMILDataEx(int msgCode, IndividualAddress src, KNXAddress dst, byte[] tpdu, Priority p, boolean confirm)
          Creates a L-Data message, mainly for confirmation.
CEMILDataEx(int msgCode, IndividualAddress src, KNXAddress dst, byte[] tpdu, Priority p, boolean repeat, boolean broadcast, boolean ack, int hopCount)
          Creates a L-Data message with full customization for control information.
CEMILDataEx(int msgCode, IndividualAddress src, KNXAddress dst, byte[] tpdu, Priority p, boolean repeat, int hopCount)
          Creates a L-Data message, mainly for TP1 media.
 

Uses of KNXAddress in tuwien.auto.calimero.link
 

Methods in tuwien.auto.calimero.link with parameters of type KNXAddress
 void KNXNetworkLinkFT12.sendRequest(KNXAddress dst, Priority p, byte[] nsdu)
           
 void KNXNetworkLink.sendRequest(KNXAddress dst, Priority p, byte[] nsdu)
          Sends a link layer request message to the given destination.
 void KNXNetworkLinkIP.sendRequest(KNXAddress dst, Priority p, byte[] nsdu)
          Sends a link layer request message to the given destination.
 void KNXNetworkLinkFT12.sendRequestWait(KNXAddress dst, Priority p, byte[] nsdu)
           
 void KNXNetworkLink.sendRequestWait(KNXAddress dst, Priority p, byte[] nsdu)
          Sends a link layer request message to the given destination, and waits for the corresponding link layer confirmation.
 void KNXNetworkLinkIP.sendRequestWait(KNXAddress dst, Priority p, byte[] nsdu)
          Sends a link layer request message to the given destination, and waits for the corresponding link layer confirmation.
 

Uses of KNXAddress in tuwien.auto.calimero.link.medium
 

Fields in tuwien.auto.calimero.link.medium declared as KNXAddress
protected  KNXAddress RawFrameBase.dst
          Destination address.
 

Methods in tuwien.auto.calimero.link.medium that return KNXAddress
 KNXAddress RawFrameBase.getDestination()
          Returns the KNX destination address.
 

Uses of KNXAddress in tuwien.auto.calimero.mgmt
 

Methods in tuwien.auto.calimero.mgmt with parameters of type KNXAddress
 void TransportLayerImpl.sendData(KNXAddress addr, Priority p, byte[] tsdu)
           
 void TransportLayer.sendData(KNXAddress addr, Priority p, byte[] tsdu)
          Sends data to the given KNX address using connectionless mode.