All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.apache.bookkeeper.stream.proto.ParentRanges Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: stream.proto
package org.apache.bookkeeper.stream.proto;
/**
* Protobuf type {@code bookkeeper.proto.stream.ParentRanges}
*/
public final class ParentRanges extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:bookkeeper.proto.stream.ParentRanges)
ParentRangesOrBuilder {
private static final long serialVersionUID = 0L;
// Use ParentRanges.newBuilder() to construct.
private ParentRanges(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ParentRanges() {
parentRangeIds_ = emptyLongList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new ParentRanges();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.bookkeeper.stream.proto.Stream.internal_static_bookkeeper_proto_stream_ParentRanges_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.bookkeeper.stream.proto.Stream.internal_static_bookkeeper_proto_stream_ParentRanges_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.bookkeeper.stream.proto.ParentRanges.class, org.apache.bookkeeper.stream.proto.ParentRanges.Builder.class);
}
public static final int RANGE_ID_FIELD_NUMBER = 1;
private long rangeId_ = 0L;
/**
* int64 range_id = 1;
* @return The rangeId.
*/
@java.lang.Override
public long getRangeId() {
return rangeId_;
}
public static final int PARENT_RANGE_IDS_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private com.google.protobuf.Internal.LongList parentRangeIds_;
/**
* repeated int64 parent_range_ids = 2;
* @return A list containing the parentRangeIds.
*/
@java.lang.Override
public java.util.List
getParentRangeIdsList() {
return parentRangeIds_;
}
/**
* repeated int64 parent_range_ids = 2;
* @return The count of parentRangeIds.
*/
public int getParentRangeIdsCount() {
return parentRangeIds_.size();
}
/**
* repeated int64 parent_range_ids = 2;
* @param index The index of the element to return.
* @return The parentRangeIds at the given index.
*/
public long getParentRangeIds(int index) {
return parentRangeIds_.getLong(index);
}
private int parentRangeIdsMemoizedSerializedSize = -1;
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 {
getSerializedSize();
if (rangeId_ != 0L) {
output.writeInt64(1, rangeId_);
}
if (getParentRangeIdsList().size() > 0) {
output.writeUInt32NoTag(18);
output.writeUInt32NoTag(parentRangeIdsMemoizedSerializedSize);
}
for (int i = 0; i < parentRangeIds_.size(); i++) {
output.writeInt64NoTag(parentRangeIds_.getLong(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (rangeId_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(1, rangeId_);
}
{
int dataSize = 0;
for (int i = 0; i < parentRangeIds_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeInt64SizeNoTag(parentRangeIds_.getLong(i));
}
size += dataSize;
if (!getParentRangeIdsList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
parentRangeIdsMemoizedSerializedSize = dataSize;
}
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 org.apache.bookkeeper.stream.proto.ParentRanges)) {
return super.equals(obj);
}
org.apache.bookkeeper.stream.proto.ParentRanges other = (org.apache.bookkeeper.stream.proto.ParentRanges) obj;
if (getRangeId()
!= other.getRangeId()) return false;
if (!getParentRangeIdsList()
.equals(other.getParentRangeIdsList())) 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) + RANGE_ID_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getRangeId());
if (getParentRangeIdsCount() > 0) {
hash = (37 * hash) + PARENT_RANGE_IDS_FIELD_NUMBER;
hash = (53 * hash) + getParentRangeIdsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.apache.bookkeeper.stream.proto.ParentRanges parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges 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 org.apache.bookkeeper.stream.proto.ParentRanges parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges 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 org.apache.bookkeeper.stream.proto.ParentRanges parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.apache.bookkeeper.stream.proto.ParentRanges 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(org.apache.bookkeeper.stream.proto.ParentRanges 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 bookkeeper.proto.stream.ParentRanges}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:bookkeeper.proto.stream.ParentRanges)
org.apache.bookkeeper.stream.proto.ParentRangesOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.apache.bookkeeper.stream.proto.Stream.internal_static_bookkeeper_proto_stream_ParentRanges_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.apache.bookkeeper.stream.proto.Stream.internal_static_bookkeeper_proto_stream_ParentRanges_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.apache.bookkeeper.stream.proto.ParentRanges.class, org.apache.bookkeeper.stream.proto.ParentRanges.Builder.class);
}
// Construct using org.apache.bookkeeper.stream.proto.ParentRanges.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
rangeId_ = 0L;
parentRangeIds_ = emptyLongList();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.apache.bookkeeper.stream.proto.Stream.internal_static_bookkeeper_proto_stream_ParentRanges_descriptor;
}
@java.lang.Override
public org.apache.bookkeeper.stream.proto.ParentRanges getDefaultInstanceForType() {
return org.apache.bookkeeper.stream.proto.ParentRanges.getDefaultInstance();
}
@java.lang.Override
public org.apache.bookkeeper.stream.proto.ParentRanges build() {
org.apache.bookkeeper.stream.proto.ParentRanges result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.apache.bookkeeper.stream.proto.ParentRanges buildPartial() {
org.apache.bookkeeper.stream.proto.ParentRanges result = new org.apache.bookkeeper.stream.proto.ParentRanges(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(org.apache.bookkeeper.stream.proto.ParentRanges result) {
if (((bitField0_ & 0x00000002) != 0)) {
parentRangeIds_.makeImmutable();
bitField0_ = (bitField0_ & ~0x00000002);
}
result.parentRangeIds_ = parentRangeIds_;
}
private void buildPartial0(org.apache.bookkeeper.stream.proto.ParentRanges result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.rangeId_ = rangeId_;
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.apache.bookkeeper.stream.proto.ParentRanges) {
return mergeFrom((org.apache.bookkeeper.stream.proto.ParentRanges)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.apache.bookkeeper.stream.proto.ParentRanges other) {
if (other == org.apache.bookkeeper.stream.proto.ParentRanges.getDefaultInstance()) return this;
if (other.getRangeId() != 0L) {
setRangeId(other.getRangeId());
}
if (!other.parentRangeIds_.isEmpty()) {
if (parentRangeIds_.isEmpty()) {
parentRangeIds_ = other.parentRangeIds_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureParentRangeIdsIsMutable();
parentRangeIds_.addAll(other.parentRangeIds_);
}
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 8: {
rangeId_ = input.readInt64();
bitField0_ |= 0x00000001;
break;
} // case 8
case 16: {
long v = input.readInt64();
ensureParentRangeIdsIsMutable();
parentRangeIds_.addLong(v);
break;
} // case 16
case 18: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
ensureParentRangeIdsIsMutable();
while (input.getBytesUntilLimit() > 0) {
parentRangeIds_.addLong(input.readInt64());
}
input.popLimit(limit);
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 long rangeId_ ;
/**
* int64 range_id = 1;
* @return The rangeId.
*/
@java.lang.Override
public long getRangeId() {
return rangeId_;
}
/**
* int64 range_id = 1;
* @param value The rangeId to set.
* @return This builder for chaining.
*/
public Builder setRangeId(long value) {
rangeId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* int64 range_id = 1;
* @return This builder for chaining.
*/
public Builder clearRangeId() {
bitField0_ = (bitField0_ & ~0x00000001);
rangeId_ = 0L;
onChanged();
return this;
}
private com.google.protobuf.Internal.LongList parentRangeIds_ = emptyLongList();
private void ensureParentRangeIdsIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
parentRangeIds_ = mutableCopy(parentRangeIds_);
bitField0_ |= 0x00000002;
}
}
/**
* repeated int64 parent_range_ids = 2;
* @return A list containing the parentRangeIds.
*/
public java.util.List
getParentRangeIdsList() {
return ((bitField0_ & 0x00000002) != 0) ?
java.util.Collections.unmodifiableList(parentRangeIds_) : parentRangeIds_;
}
/**
* repeated int64 parent_range_ids = 2;
* @return The count of parentRangeIds.
*/
public int getParentRangeIdsCount() {
return parentRangeIds_.size();
}
/**
* repeated int64 parent_range_ids = 2;
* @param index The index of the element to return.
* @return The parentRangeIds at the given index.
*/
public long getParentRangeIds(int index) {
return parentRangeIds_.getLong(index);
}
/**
* repeated int64 parent_range_ids = 2;
* @param index The index to set the value at.
* @param value The parentRangeIds to set.
* @return This builder for chaining.
*/
public Builder setParentRangeIds(
int index, long value) {
ensureParentRangeIdsIsMutable();
parentRangeIds_.setLong(index, value);
onChanged();
return this;
}
/**
* repeated int64 parent_range_ids = 2;
* @param value The parentRangeIds to add.
* @return This builder for chaining.
*/
public Builder addParentRangeIds(long value) {
ensureParentRangeIdsIsMutable();
parentRangeIds_.addLong(value);
onChanged();
return this;
}
/**
* repeated int64 parent_range_ids = 2;
* @param values The parentRangeIds to add.
* @return This builder for chaining.
*/
public Builder addAllParentRangeIds(
java.lang.Iterable extends java.lang.Long> values) {
ensureParentRangeIdsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, parentRangeIds_);
onChanged();
return this;
}
/**
* repeated int64 parent_range_ids = 2;
* @return This builder for chaining.
*/
public Builder clearParentRangeIds() {
parentRangeIds_ = emptyLongList();
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:bookkeeper.proto.stream.ParentRanges)
}
// @@protoc_insertion_point(class_scope:bookkeeper.proto.stream.ParentRanges)
private static final org.apache.bookkeeper.stream.proto.ParentRanges DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.apache.bookkeeper.stream.proto.ParentRanges();
}
public static org.apache.bookkeeper.stream.proto.ParentRanges getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ParentRanges 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 org.apache.bookkeeper.stream.proto.ParentRanges getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}