com.lightstep.tracer.grpc.KeyValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-common Show documentation
Show all versions of java-common Show documentation
The LightStep OpenTracing Tracer implementation for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: collector.proto
package com.lightstep.tracer.grpc;
public interface KeyValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:lightstep.collector.KeyValue)
com.google.protobuf.MessageOrBuilder {
/**
* string key = 1;
*/
java.lang.String getKey();
/**
* string key = 1;
*/
com.google.protobuf.ByteString
getKeyBytes();
/**
*
* Holds arbitrary string data; well-formed JSON strings should go in
* json_value.
*
*
* string string_value = 2;
*/
java.lang.String getStringValue();
/**
*
* Holds arbitrary string data; well-formed JSON strings should go in
* json_value.
*
*
* string string_value = 2;
*/
com.google.protobuf.ByteString
getStringValueBytes();
/**
* int64 int_value = 3;
*/
long getIntValue();
/**
* double double_value = 4;
*/
double getDoubleValue();
/**
* bool bool_value = 5;
*/
boolean getBoolValue();
/**
*
* Must be a well-formed JSON value. Truncated JSON should go in
* string_value. Should not be used for tags.
*
*
* string json_value = 6;
*/
java.lang.String getJsonValue();
/**
*
* Must be a well-formed JSON value. Truncated JSON should go in
* string_value. Should not be used for tags.
*
*
* string json_value = 6;
*/
com.google.protobuf.ByteString
getJsonValueBytes();
public com.lightstep.tracer.grpc.KeyValue.ValueCase getValueCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy