com.zepben.protobuf.cim.iec61970.base.meas.AnalogValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evolve-grpc Show documentation
Show all versions of evolve-grpc Show documentation
Protobuf and gRPC definitions for the evolve platform
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: zepben/protobuf/cim/iec61970/base/meas/AnalogValue.proto
package com.zepben.protobuf.cim.iec61970.base.meas;
public interface AnalogValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:zepben.protobuf.cim.iec61970.base.meas.AnalogValue)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* MeasurementValue fields for this AnalogValue.
*
*
* .zepben.protobuf.cim.iec61970.base.meas.MeasurementValue mv = 1;
* @return Whether the mv field is set.
*/
boolean hasMv();
/**
*
**
* MeasurementValue fields for this AnalogValue.
*
*
* .zepben.protobuf.cim.iec61970.base.meas.MeasurementValue mv = 1;
* @return The mv.
*/
com.zepben.protobuf.cim.iec61970.base.meas.MeasurementValue getMv();
/**
*
**
* MeasurementValue fields for this AnalogValue.
*
*
* .zepben.protobuf.cim.iec61970.base.meas.MeasurementValue mv = 1;
*/
com.zepben.protobuf.cim.iec61970.base.meas.MeasurementValueOrBuilder getMvOrBuilder();
/**
*
**
* An analog value object is part of an analog.
*
*
* string analogMRID = 2;
* @return The analogMRID.
*/
java.lang.String getAnalogMRID();
/**
*
**
* An analog value object is part of an analog.
*
*
* string analogMRID = 2;
* @return The bytes for analogMRID.
*/
com.google.protobuf.ByteString
getAnalogMRIDBytes();
/**
*
**
* The value to supervise.
*
*
* double value = 3;
* @return The value.
*/
double getValue();
}