proto.com.cognite.client.dto.TimeseriesPointOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdf-sdk-java Show documentation
Show all versions of cdf-sdk-java Show documentation
Java SDK for reading and writing from/to CDF resources.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: timeseries.proto
package com.cognite.client.dto;
public interface TimeseriesPointOrBuilder extends
// @@protoc_insertion_point(interface_extends:com.cognite.beam.proto.TimeseriesPoint)
com.google.protobuf.MessageOrBuilder {
/**
* int64 id = 1;
* @return The id.
*/
long getId();
/**
* optional string external_id = 2;
* @return Whether the externalId field is set.
*/
boolean hasExternalId();
/**
* optional string external_id = 2;
* @return The externalId.
*/
java.lang.String getExternalId();
/**
* optional string external_id = 2;
* @return The bytes for externalId.
*/
com.google.protobuf.ByteString
getExternalIdBytes();
/**
* optional bool is_step = 3;
* @return Whether the isStep field is set.
*/
boolean hasIsStep();
/**
* optional bool is_step = 3;
* @return The isStep.
*/
boolean getIsStep();
/**
* int64 timestamp = 4;
* @return The timestamp.
*/
long getTimestamp();
/**
* double value_num = 5;
* @return Whether the valueNum field is set.
*/
boolean hasValueNum();
/**
* double value_num = 5;
* @return The valueNum.
*/
double getValueNum();
/**
* string value_string = 6;
* @return Whether the valueString field is set.
*/
boolean hasValueString();
/**
* string value_string = 6;
* @return The valueString.
*/
java.lang.String getValueString();
/**
* string value_string = 6;
* @return The bytes for valueString.
*/
com.google.protobuf.ByteString
getValueStringBytes();
/**
* .com.cognite.beam.proto.TimeseriesPoint.Aggregates value_aggregates = 7;
* @return Whether the valueAggregates field is set.
*/
boolean hasValueAggregates();
/**
* .com.cognite.beam.proto.TimeseriesPoint.Aggregates value_aggregates = 7;
* @return The valueAggregates.
*/
com.cognite.client.dto.TimeseriesPoint.Aggregates getValueAggregates();
/**
* .com.cognite.beam.proto.TimeseriesPoint.Aggregates value_aggregates = 7;
*/
com.cognite.client.dto.TimeseriesPoint.AggregatesOrBuilder getValueAggregatesOrBuilder();
public com.cognite.client.dto.TimeseriesPoint.DatapointTypeCase getDatapointTypeCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy