本文整理汇总了Java中org.openhab.binding.homematic.internal.model.HmDevice.getType方法的典型用法代码示例。如果您正苦于以下问题:Java HmDevice.getType方法的具体用法?Java HmDevice.getType怎么用?Java HmDevice.getType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.openhab.binding.homematic.internal.model.HmDevice
的用法示例。
在下文中一共展示了HmDevice.getType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDeviceName
import org.openhab.binding.homematic.internal.model.HmDevice; //导入方法依赖的package包/类
/**
* Returns the device name for the given device type.
*/
public static String getDeviceName(HmDevice device) {
if (device.isGatewayExtras()) {
return getDescription(HmDevice.TYPE_GATEWAY_EXTRAS);
}
String deviceDescription = null;
boolean isTeam = device.getType().endsWith("-Team");
String type = isTeam ? StringUtils.remove(device.getType(), "-Team") : device.getType();
deviceDescription = getDescription(type);
if (deviceDescription != null && isTeam) {
deviceDescription += " Team";
}
return deviceDescription == null ? "No Description" : deviceDescription;
}
示例2: generateThingTypeUID
import org.openhab.binding.homematic.internal.model.HmDevice; //导入方法依赖的package包/类
/**
* Generates the ThingTypeUID for the given device. If it's a Homegear device, add a prefix because a Homegear
* device has more datapoints.
*/
public static ThingTypeUID generateThingTypeUID(HmDevice device) {
if (!device.isGatewayExtras() && device.getGatewayId().equals(HmGatewayInfo.ID_HOMEGEAR)) {
return new ThingTypeUID(BINDING_ID, String.format("HG-%s", device.getType()));
} else {
return new ThingTypeUID(BINDING_ID, device.getType());
}
}