gpt4 book ai didi

com.zsmartsystems.zigbee.zcl.ZclAttribute.isReadable()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-15 22:39:31 25 4
gpt4 key购买 nike

本文整理了Java中com.zsmartsystems.zigbee.zcl.ZclAttribute.isReadable()方法的一些代码示例,展示了ZclAttribute.isReadable()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZclAttribute.isReadable()方法的具体详情如下:
包路径:com.zsmartsystems.zigbee.zcl.ZclAttribute
类名称:ZclAttribute
方法名:isReadable

ZclAttribute.isReadable介绍

[英]Returns true if this attribute is readable
[中]如果此属性可读,则返回true

代码示例

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

private void printAttributes(final ZclCluster cluster, final PrintStream out) {
    Map<Integer, ZclAttribute> attributeTree = new TreeMap<Integer, ZclAttribute>();
    for (ZclAttribute attribute : cluster.getAttributes()) {
      attributeTree.put(attribute.getId(), attribute);
    }

    for (ZclAttribute attribute : attributeTree.values()) {
      out.println(String.format("        %s   %5d %s%s%s %s %-40s %s %s",
          (cluster.getSupportedAttributes().contains(attribute.getId()) ? "S" : "U"), attribute.getId(),
          (attribute.isReadable() ? "r" : "-"), (attribute.isWritable() ? "w" : "-"),
          (attribute.isReportable() ? "s" : "-"), printZclDataType(attribute.getDataType()),
          attribute.getName(),
          (attribute.getLastValue() == null ? "" : attribute.getLastReportTime().getTime()),
          (attribute.getLastValue() == null ? "" : attribute.getLastValue())));
    }
  }
}

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

@Test
public void testConstructor() {
  ZclAttribute attribute = new ZclAttribute(ZclClusterType.ON_OFF, 0, "Test Name",
      ZclDataType.UNSIGNED_8_BIT_INTEGER, false, false, false, false);
  assertEquals(ZclClusterType.ON_OFF, attribute.getCluster());
  assertEquals(0, attribute.getId());
  assertEquals("Test Name", attribute.getName());
  assertEquals(ZclDataType.UNSIGNED_8_BIT_INTEGER, attribute.getDataType());
  assertEquals(false, attribute.isMandatory());
  assertEquals(false, attribute.isWritable());
  assertEquals(false, attribute.isReadable());
  assertEquals(false, attribute.isReportable());
  System.out.println(attribute.toString());
  attribute = new ZclAttribute(ZclClusterType.ON_OFF, 0, "Test Name", ZclDataType.UNSIGNED_8_BIT_INTEGER, true,
      true, true, true);
  assertEquals(true, attribute.isMandatory());
  assertEquals(true, attribute.isWritable());
  assertEquals(true, attribute.isReadable());
  assertEquals(true, attribute.isReportable());
  System.out.println(attribute.toString());
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com