public static enum PutTimeseriesDataRequest.MetaUpdateMode extends Enum<PutTimeseriesDataRequest.MetaUpdateMode>
| Enum Constant and Description |
|---|
IGNORE
不更新时间线元数据的模式
注意,设置为IGNORE后,本次请求写入的数据将不会自动更新时间线的元数据索引,可能会影响元数据检索和SQL查询
|
NORMAL
正常模式,服务端会判断是否更新时间线的元数据索引
|
| Modifier and Type | Method and Description |
|---|---|
static PutTimeseriesDataRequest.MetaUpdateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PutTimeseriesDataRequest.MetaUpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PutTimeseriesDataRequest.MetaUpdateMode NORMAL
public static final PutTimeseriesDataRequest.MetaUpdateMode IGNORE
public static PutTimeseriesDataRequest.MetaUpdateMode[] values()
for (PutTimeseriesDataRequest.MetaUpdateMode c : PutTimeseriesDataRequest.MetaUpdateMode.values()) System.out.println(c);
public static PutTimeseriesDataRequest.MetaUpdateMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All Rights Reserved.