com.vesoft.nebula.proto.common.DirInfo Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: common.proto
// Protobuf Java Version: 3.25.1
package com.vesoft.nebula.proto.common;
/**
* Protobuf type {@code nebula.proto.common.DirInfo}
*/
public final class DirInfo extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:nebula.proto.common.DirInfo)
DirInfoOrBuilder {
private static final long serialVersionUID = 0L;
// Use DirInfo.newBuilder() to construct.
private DirInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DirInfo() {
installPath_ = com.google.protobuf.ByteString.EMPTY;
dataPaths_ = emptyList(com.google.protobuf.ByteString.class);
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new DirInfo();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_DirInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_DirInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.vesoft.nebula.proto.common.DirInfo.class, com.vesoft.nebula.proto.common.DirInfo.Builder.class);
}
public static final int INSTALL_PATH_FIELD_NUMBER = 1;
private com.google.protobuf.ByteString installPath_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes install_path = 1;
* @return The installPath.
*/
@java.lang.Override
public com.google.protobuf.ByteString getInstallPath() {
return installPath_;
}
public static final int DATA_PATHS_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private com.google.protobuf.Internal.ProtobufList dataPaths_ =
emptyList(com.google.protobuf.ByteString.class);
/**
* repeated bytes data_paths = 2;
* @return A list containing the dataPaths.
*/
@java.lang.Override
public java.util.List
getDataPathsList() {
return dataPaths_;
}
/**
* repeated bytes data_paths = 2;
* @return The count of dataPaths.
*/
public int getDataPathsCount() {
return dataPaths_.size();
}
/**
* repeated bytes data_paths = 2;
* @param index The index of the element to return.
* @return The dataPaths at the given index.
*/
public com.google.protobuf.ByteString getDataPaths(int index) {
return dataPaths_.get(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!installPath_.isEmpty()) {
output.writeBytes(1, installPath_);
}
for (int i = 0; i < dataPaths_.size(); i++) {
output.writeBytes(2, dataPaths_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!installPath_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, installPath_);
}
{
int dataSize = 0;
for (int i = 0; i < dataPaths_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(dataPaths_.get(i));
}
size += dataSize;
size += 1 * getDataPathsList().size();
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.vesoft.nebula.proto.common.DirInfo)) {
return super.equals(obj);
}
com.vesoft.nebula.proto.common.DirInfo other = (com.vesoft.nebula.proto.common.DirInfo) obj;
if (!getInstallPath()
.equals(other.getInstallPath())) return false;
if (!getDataPathsList()
.equals(other.getDataPathsList())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + INSTALL_PATH_FIELD_NUMBER;
hash = (53 * hash) + getInstallPath().hashCode();
if (getDataPathsCount() > 0) {
hash = (37 * hash) + DATA_PATHS_FIELD_NUMBER;
hash = (53 * hash) + getDataPathsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.vesoft.nebula.proto.common.DirInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.vesoft.nebula.proto.common.DirInfo parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.vesoft.nebula.proto.common.DirInfo parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.vesoft.nebula.proto.common.DirInfo prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code nebula.proto.common.DirInfo}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:nebula.proto.common.DirInfo)
com.vesoft.nebula.proto.common.DirInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_DirInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_DirInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.vesoft.nebula.proto.common.DirInfo.class, com.vesoft.nebula.proto.common.DirInfo.Builder.class);
}
// Construct using com.vesoft.nebula.proto.common.DirInfo.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
installPath_ = com.google.protobuf.ByteString.EMPTY;
dataPaths_ = emptyList(com.google.protobuf.ByteString.class);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.vesoft.nebula.proto.common.Common.internal_static_nebula_proto_common_DirInfo_descriptor;
}
@java.lang.Override
public com.vesoft.nebula.proto.common.DirInfo getDefaultInstanceForType() {
return com.vesoft.nebula.proto.common.DirInfo.getDefaultInstance();
}
@java.lang.Override
public com.vesoft.nebula.proto.common.DirInfo build() {
com.vesoft.nebula.proto.common.DirInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.vesoft.nebula.proto.common.DirInfo buildPartial() {
com.vesoft.nebula.proto.common.DirInfo result = new com.vesoft.nebula.proto.common.DirInfo(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.vesoft.nebula.proto.common.DirInfo result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.installPath_ = installPath_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
dataPaths_.makeImmutable();
result.dataPaths_ = dataPaths_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.vesoft.nebula.proto.common.DirInfo) {
return mergeFrom((com.vesoft.nebula.proto.common.DirInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.vesoft.nebula.proto.common.DirInfo other) {
if (other == com.vesoft.nebula.proto.common.DirInfo.getDefaultInstance()) return this;
if (other.getInstallPath() != com.google.protobuf.ByteString.EMPTY) {
setInstallPath(other.getInstallPath());
}
if (!other.dataPaths_.isEmpty()) {
if (dataPaths_.isEmpty()) {
dataPaths_ = other.dataPaths_;
dataPaths_.makeImmutable();
bitField0_ |= 0x00000002;
} else {
ensureDataPathsIsMutable();
dataPaths_.addAll(other.dataPaths_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
installPath_ = input.readBytes();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
com.google.protobuf.ByteString v = input.readBytes();
ensureDataPathsIsMutable();
dataPaths_.add(v);
break;
} // case 18
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.protobuf.ByteString installPath_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes install_path = 1;
* @return The installPath.
*/
@java.lang.Override
public com.google.protobuf.ByteString getInstallPath() {
return installPath_;
}
/**
* bytes install_path = 1;
* @param value The installPath to set.
* @return This builder for chaining.
*/
public Builder setInstallPath(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
installPath_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* bytes install_path = 1;
* @return This builder for chaining.
*/
public Builder clearInstallPath() {
bitField0_ = (bitField0_ & ~0x00000001);
installPath_ = getDefaultInstance().getInstallPath();
onChanged();
return this;
}
private com.google.protobuf.Internal.ProtobufList dataPaths_ = emptyList(com.google.protobuf.ByteString.class);
private void ensureDataPathsIsMutable() {
if (!dataPaths_.isModifiable()) {
dataPaths_ = makeMutableCopy(dataPaths_);
}
bitField0_ |= 0x00000002;
}
/**
* repeated bytes data_paths = 2;
* @return A list containing the dataPaths.
*/
public java.util.List
getDataPathsList() {
dataPaths_.makeImmutable();
return dataPaths_;
}
/**
* repeated bytes data_paths = 2;
* @return The count of dataPaths.
*/
public int getDataPathsCount() {
return dataPaths_.size();
}
/**
* repeated bytes data_paths = 2;
* @param index The index of the element to return.
* @return The dataPaths at the given index.
*/
public com.google.protobuf.ByteString getDataPaths(int index) {
return dataPaths_.get(index);
}
/**
* repeated bytes data_paths = 2;
* @param index The index to set the value at.
* @param value The dataPaths to set.
* @return This builder for chaining.
*/
public Builder setDataPaths(
int index, com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
ensureDataPathsIsMutable();
dataPaths_.set(index, value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* repeated bytes data_paths = 2;
* @param value The dataPaths to add.
* @return This builder for chaining.
*/
public Builder addDataPaths(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
ensureDataPathsIsMutable();
dataPaths_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* repeated bytes data_paths = 2;
* @param values The dataPaths to add.
* @return This builder for chaining.
*/
public Builder addAllDataPaths(
java.lang.Iterable extends com.google.protobuf.ByteString> values) {
ensureDataPathsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, dataPaths_);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* repeated bytes data_paths = 2;
* @return This builder for chaining.
*/
public Builder clearDataPaths() {
dataPaths_ = emptyList(com.google.protobuf.ByteString.class);
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:nebula.proto.common.DirInfo)
}
// @@protoc_insertion_point(class_scope:nebula.proto.common.DirInfo)
private static final com.vesoft.nebula.proto.common.DirInfo DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.vesoft.nebula.proto.common.DirInfo();
}
public static com.vesoft.nebula.proto.common.DirInfo getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DirInfo parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.vesoft.nebula.proto.common.DirInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}