本文整理了Java中com.sitewhere.rest.model.area.request.ZoneCreateRequest.setOpacity()
方法的一些代码示例,展示了ZoneCreateRequest.setOpacity()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoneCreateRequest.setOpacity()
方法的具体详情如下:
包路径:com.sitewhere.rest.model.area.request.ZoneCreateRequest
类名称:ZoneCreateRequest
方法名:setOpacity
暂无
代码示例来源:origin: com.sitewhere/sitewhere-java-model
public Builder withOpacity(double opacity) {
request.setOpacity(opacity);
return this;
}
代码示例来源:origin: sitewhere/sitewhere
/**
* Convert zone create request from GRPC to API.
*
* @param grpc
* @return
* @throws SiteWhereException
*/
public static ZoneCreateRequest asApiZoneCreateRequest(GZoneCreateRequest grpc) throws SiteWhereException {
ZoneCreateRequest api = new ZoneCreateRequest();
api.setToken(grpc.hasToken() ? grpc.getToken().getValue() : null);
api.setAreaToken(grpc.hasAreaToken() ? grpc.getAreaToken().getValue() : null);
api.setName(grpc.hasName() ? grpc.getName().getValue() : null);
api.setBounds(CommonModelConverter.asApiLocations(grpc.getBoundsList()));
api.setFillColor(grpc.hasFillColor() ? grpc.getFillColor().getValue() : null);
api.setBorderColor(grpc.hasBorderColor() ? grpc.getBorderColor().getValue() : null);
api.setOpacity(grpc.hasOpacity() ? grpc.getOpacity().getValue() : null);
api.setMetadata(grpc.getMetadataMap());
return api;
}
内容来源于网络,如有侵权,请联系作者删除!