io.opencensus.proto.metrics.v1.LabelValueOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: opencensus/proto/metrics/v1/metrics.proto
package io.opencensus.proto.metrics.v1;
public interface LabelValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:opencensus.proto.metrics.v1.LabelValue)
com.google.protobuf.MessageOrBuilder {
/**
*
* The value for the label.
*
*
* string value = 1;
* @return The value.
*/
java.lang.String getValue();
/**
*
* The value for the label.
*
*
* string value = 1;
* @return The bytes for value.
*/
com.google.protobuf.ByteString
getValueBytes();
/**
*
* If false the value field is ignored and considered not set.
* This is used to differentiate a missing label from an empty string.
*
*
* bool has_value = 2;
* @return The hasValue.
*/
boolean getHasValue();
}