io.axoniq.axonserver.grpc.MetaDataValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axonserver-connector-java Show documentation
Show all versions of axonserver-connector-java Show documentation
Connector module providing infrastructure components that connect to AxonServer.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: common.proto
package io.axoniq.axonserver.grpc;
public interface MetaDataValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.axoniq.axonserver.grpc.MetaDataValue)
com.google.protobuf.MessageOrBuilder {
/**
*
* The text value of the Meta Data entry.
*
*
* string text_value = 1;
*/
java.lang.String getTextValue();
/**
*
* The text value of the Meta Data entry.
*
*
* string text_value = 1;
*/
com.google.protobuf.ByteString
getTextValueBytes();
/**
*
* The numeric value of the Meta Data entry.
*
*
* sint64 number_value = 2;
*/
long getNumberValue();
/**
*
* The boolean value of the Meta Data entry.
*
*
* bool boolean_value = 3;
*/
boolean getBooleanValue();
/**
*
* The floating point value of the Meta Data entry.
*
*
* double double_value = 4;
*/
double getDoubleValue();
/**
*
* The binary value of the Meta Data entry.
*
*
* .io.axoniq.axonserver.grpc.SerializedObject bytes_value = 5;
*/
boolean hasBytesValue();
/**
*
* The binary value of the Meta Data entry.
*
*
* .io.axoniq.axonserver.grpc.SerializedObject bytes_value = 5;
*/
io.axoniq.axonserver.grpc.SerializedObject getBytesValue();
/**
*
* The binary value of the Meta Data entry.
*
*
* .io.axoniq.axonserver.grpc.SerializedObject bytes_value = 5;
*/
io.axoniq.axonserver.grpc.SerializedObjectOrBuilder getBytesValueOrBuilder();
public io.axoniq.axonserver.grpc.MetaDataValue.DataCase getDataCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy