com.alibaba.graphscope.proto.GrootInfoPb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groot-client Show documentation
Show all versions of groot-client Show documentation
The Java client of Groot, a persistence storage engine
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: graph_def.proto
package com.alibaba.graphscope.proto;
/**
*
* Attributes that only meaningful to and will be set by groot storage
*
*
* Protobuf type {@code gs.rpc.graph.GrootInfoPb}
*/
public final class GrootInfoPb extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:gs.rpc.graph.GrootInfoPb)
GrootInfoPbOrBuilder {
private static final long serialVersionUID = 0L;
// Use GrootInfoPb.newBuilder() to construct.
private GrootInfoPb(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GrootInfoPb() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new GrootInfoPb();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.alibaba.graphscope.proto.GraphDef.internal_static_gs_rpc_graph_GrootInfoPb_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.alibaba.graphscope.proto.GraphDef.internal_static_gs_rpc_graph_GrootInfoPb_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.alibaba.graphscope.proto.GrootInfoPb.class, com.alibaba.graphscope.proto.GrootInfoPb.Builder.class);
}
public static final int LAST_LABEL_ID_FIELD_NUMBER = 1;
private int lastLabelId_ = 0;
/**
* int32 last_label_id = 1;
* @return The lastLabelId.
*/
@java.lang.Override
public int getLastLabelId() {
return lastLabelId_;
}
public static final int LAST_PROPERTY_ID_FIELD_NUMBER = 2;
private int lastPropertyId_ = 0;
/**
* int32 last_property_id = 2;
* @return The lastPropertyId.
*/
@java.lang.Override
public int getLastPropertyId() {
return lastPropertyId_;
}
public static final int LAST_TABLE_ID_FIELD_NUMBER = 3;
private long lastTableId_ = 0L;
/**
* int64 last_table_id = 3;
* @return The lastTableId.
*/
@java.lang.Override
public long getLastTableId() {
return lastTableId_;
}
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 (lastLabelId_ != 0) {
output.writeInt32(1, lastLabelId_);
}
if (lastPropertyId_ != 0) {
output.writeInt32(2, lastPropertyId_);
}
if (lastTableId_ != 0L) {
output.writeInt64(3, lastTableId_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (lastLabelId_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, lastLabelId_);
}
if (lastPropertyId_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, lastPropertyId_);
}
if (lastTableId_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(3, lastTableId_);
}
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.alibaba.graphscope.proto.GrootInfoPb)) {
return super.equals(obj);
}
com.alibaba.graphscope.proto.GrootInfoPb other = (com.alibaba.graphscope.proto.GrootInfoPb) obj;
if (getLastLabelId()
!= other.getLastLabelId()) return false;
if (getLastPropertyId()
!= other.getLastPropertyId()) return false;
if (getLastTableId()
!= other.getLastTableId()) 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) + LAST_LABEL_ID_FIELD_NUMBER;
hash = (53 * hash) + getLastLabelId();
hash = (37 * hash) + LAST_PROPERTY_ID_FIELD_NUMBER;
hash = (53 * hash) + getLastPropertyId();
hash = (37 * hash) + LAST_TABLE_ID_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getLastTableId());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.alibaba.graphscope.proto.GrootInfoPb parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.alibaba.graphscope.proto.GrootInfoPb parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.alibaba.graphscope.proto.GrootInfoPb parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.alibaba.graphscope.proto.GrootInfoPb parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.alibaba.graphscope.proto.GrootInfoPb parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.alibaba.graphscope.proto.GrootInfoPb parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.alibaba.graphscope.proto.GrootInfoPb parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.alibaba.graphscope.proto.GrootInfoPb 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.alibaba.graphscope.proto.GrootInfoPb parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.alibaba.graphscope.proto.GrootInfoPb 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.alibaba.graphscope.proto.GrootInfoPb parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.alibaba.graphscope.proto.GrootInfoPb 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.alibaba.graphscope.proto.GrootInfoPb 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;
}
/**
*
* Attributes that only meaningful to and will be set by groot storage
*
*
* Protobuf type {@code gs.rpc.graph.GrootInfoPb}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:gs.rpc.graph.GrootInfoPb)
com.alibaba.graphscope.proto.GrootInfoPbOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.alibaba.graphscope.proto.GraphDef.internal_static_gs_rpc_graph_GrootInfoPb_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.alibaba.graphscope.proto.GraphDef.internal_static_gs_rpc_graph_GrootInfoPb_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.alibaba.graphscope.proto.GrootInfoPb.class, com.alibaba.graphscope.proto.GrootInfoPb.Builder.class);
}
// Construct using com.alibaba.graphscope.proto.GrootInfoPb.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
lastLabelId_ = 0;
lastPropertyId_ = 0;
lastTableId_ = 0L;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.alibaba.graphscope.proto.GraphDef.internal_static_gs_rpc_graph_GrootInfoPb_descriptor;
}
@java.lang.Override
public com.alibaba.graphscope.proto.GrootInfoPb getDefaultInstanceForType() {
return com.alibaba.graphscope.proto.GrootInfoPb.getDefaultInstance();
}
@java.lang.Override
public com.alibaba.graphscope.proto.GrootInfoPb build() {
com.alibaba.graphscope.proto.GrootInfoPb result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.alibaba.graphscope.proto.GrootInfoPb buildPartial() {
com.alibaba.graphscope.proto.GrootInfoPb result = new com.alibaba.graphscope.proto.GrootInfoPb(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.alibaba.graphscope.proto.GrootInfoPb result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.lastLabelId_ = lastLabelId_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.lastPropertyId_ = lastPropertyId_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.lastTableId_ = lastTableId_;
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.alibaba.graphscope.proto.GrootInfoPb) {
return mergeFrom((com.alibaba.graphscope.proto.GrootInfoPb)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.alibaba.graphscope.proto.GrootInfoPb other) {
if (other == com.alibaba.graphscope.proto.GrootInfoPb.getDefaultInstance()) return this;
if (other.getLastLabelId() != 0) {
setLastLabelId(other.getLastLabelId());
}
if (other.getLastPropertyId() != 0) {
setLastPropertyId(other.getLastPropertyId());
}
if (other.getLastTableId() != 0L) {
setLastTableId(other.getLastTableId());
}
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 8: {
lastLabelId_ = input.readInt32();
bitField0_ |= 0x00000001;
break;
} // case 8
case 16: {
lastPropertyId_ = input.readInt32();
bitField0_ |= 0x00000002;
break;
} // case 16
case 24: {
lastTableId_ = input.readInt64();
bitField0_ |= 0x00000004;
break;
} // case 24
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 int lastLabelId_ ;
/**
* int32 last_label_id = 1;
* @return The lastLabelId.
*/
@java.lang.Override
public int getLastLabelId() {
return lastLabelId_;
}
/**
* int32 last_label_id = 1;
* @param value The lastLabelId to set.
* @return This builder for chaining.
*/
public Builder setLastLabelId(int value) {
lastLabelId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* int32 last_label_id = 1;
* @return This builder for chaining.
*/
public Builder clearLastLabelId() {
bitField0_ = (bitField0_ & ~0x00000001);
lastLabelId_ = 0;
onChanged();
return this;
}
private int lastPropertyId_ ;
/**
* int32 last_property_id = 2;
* @return The lastPropertyId.
*/
@java.lang.Override
public int getLastPropertyId() {
return lastPropertyId_;
}
/**
* int32 last_property_id = 2;
* @param value The lastPropertyId to set.
* @return This builder for chaining.
*/
public Builder setLastPropertyId(int value) {
lastPropertyId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* int32 last_property_id = 2;
* @return This builder for chaining.
*/
public Builder clearLastPropertyId() {
bitField0_ = (bitField0_ & ~0x00000002);
lastPropertyId_ = 0;
onChanged();
return this;
}
private long lastTableId_ ;
/**
* int64 last_table_id = 3;
* @return The lastTableId.
*/
@java.lang.Override
public long getLastTableId() {
return lastTableId_;
}
/**
* int64 last_table_id = 3;
* @param value The lastTableId to set.
* @return This builder for chaining.
*/
public Builder setLastTableId(long value) {
lastTableId_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* int64 last_table_id = 3;
* @return This builder for chaining.
*/
public Builder clearLastTableId() {
bitField0_ = (bitField0_ & ~0x00000004);
lastTableId_ = 0L;
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:gs.rpc.graph.GrootInfoPb)
}
// @@protoc_insertion_point(class_scope:gs.rpc.graph.GrootInfoPb)
private static final com.alibaba.graphscope.proto.GrootInfoPb DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.alibaba.graphscope.proto.GrootInfoPb();
}
public static com.alibaba.graphscope.proto.GrootInfoPb getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GrootInfoPb 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.alibaba.graphscope.proto.GrootInfoPb getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy