Package org.osgi.service.zigbee.descriptions

Examples of org.osgi.service.zigbee.descriptions.ZigBeeDataTypeDescription


   * @param type
   * @return type name
   * @throws IllegalArgumentException if unknown type
   */
   public static ZigBeeDataTypeDescription getZigBeeDataTypeDescription(short type) throws IllegalArgumentException {
     ZigBeeDataTypeDescription retour = null;
          
      switch (type & 0xff) {
      case GENERAL_DATA_8:
        retour = ZigBeeGeneralData8.getInstance();
        break;
View Full Code Here

TOP

Related Classes of org.osgi.service.zigbee.descriptions.ZigBeeDataTypeDescription

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.