cn.foxtech.common.entity.entity.DeviceValueExObjectValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fox-edge-server-common-entity-service Show documentation
Show all versions of fox-edge-server-common-entity-service Show documentation
fox-edge-server-common-entity-service
The newest version!
/* ----------------------------------------------------------------------------
* Copyright (c) Guangzhou Fox-Tech Co., Ltd. 2020-2024. All rights reserved.
* --------------------------------------------------------------------------- */
package cn.foxtech.common.entity.entity;
import cn.foxtech.common.utils.number.NumberUtils;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
@Getter(value = AccessLevel.PUBLIC)
@Setter(value = AccessLevel.PUBLIC)
public class DeviceValueExObjectValue {
/**
* 缓存队列的深度
*/
private int cacheSize = 1;
/**
* 数值
*/
private List values = new ArrayList<>();
public void bind(Map map) {
this.cacheSize = NumberUtils.makeInteger(map.get("cacheSize"));
List values = (List) map.getOrDefault("values", new ArrayList<>());
this.values.clear();
for (Object data : values) {
if (data instanceof DeviceObjectValue) {
this.values.add((DeviceObjectValue) data);
continue;
}
if (data instanceof Map) {
DeviceObjectValue deviceObjectValue = new DeviceObjectValue();
deviceObjectValue.bind((Map) data);
this.values.add(deviceObjectValue);
continue;
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy