* @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;