io.helidon.config.etcd.internal.client.proto.CompareOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helidon-config-etcd Show documentation
Show all versions of helidon-config-etcd Show documentation
etcd config source implementation.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: rpc.proto
// Protobuf Java Version: 4.27.3
package io.helidon.config.etcd.internal.client.proto;
public interface CompareOrBuilder extends
// @@protoc_insertion_point(interface_extends:etcdserverpb.Compare)
com.google.protobuf.MessageOrBuilder {
/**
*
* result is logical comparison operation for this comparison.
*
*
* .etcdserverpb.Compare.CompareResult result = 1;
* @return The enum numeric value on the wire for result.
*/
int getResultValue();
/**
*
* result is logical comparison operation for this comparison.
*
*
* .etcdserverpb.Compare.CompareResult result = 1;
* @return The result.
*/
io.helidon.config.etcd.internal.client.proto.Compare.CompareResult getResult();
/**
*
* target is the key-value field to inspect for the comparison.
*
*
* .etcdserverpb.Compare.CompareTarget target = 2;
* @return The enum numeric value on the wire for target.
*/
int getTargetValue();
/**
*
* target is the key-value field to inspect for the comparison.
*
*
* .etcdserverpb.Compare.CompareTarget target = 2;
* @return The target.
*/
io.helidon.config.etcd.internal.client.proto.Compare.CompareTarget getTarget();
/**
*
* key is the subject key for the comparison operation.
*
*
* bytes key = 3;
* @return The key.
*/
com.google.protobuf.ByteString getKey();
/**
*
* version is the version of the given key
*
*
* int64 version = 4;
* @return Whether the version field is set.
*/
boolean hasVersion();
/**
*
* version is the version of the given key
*
*
* int64 version = 4;
* @return The version.
*/
long getVersion();
/**
*
* create_revision is the creation revision of the given key
*
*
* int64 create_revision = 5;
* @return Whether the createRevision field is set.
*/
boolean hasCreateRevision();
/**
*
* create_revision is the creation revision of the given key
*
*
* int64 create_revision = 5;
* @return The createRevision.
*/
long getCreateRevision();
/**
*
* mod_revision is the last modified revision of the given key.
*
*
* int64 mod_revision = 6;
* @return Whether the modRevision field is set.
*/
boolean hasModRevision();
/**
*
* mod_revision is the last modified revision of the given key.
*
*
* int64 mod_revision = 6;
* @return The modRevision.
*/
long getModRevision();
/**
*
* value is the value of the given key, in bytes.
*
*
* bytes value = 7;
* @return Whether the value field is set.
*/
boolean hasValue();
/**
*
* value is the value of the given key, in bytes.
*
*
* bytes value = 7;
* @return The value.
*/
com.google.protobuf.ByteString getValue();
io.helidon.config.etcd.internal.client.proto.Compare.TargetUnionCase getTargetUnionCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy