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.
com.palantir.atlasdb.protos.generated.StreamPersistence Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: StreamPersistence.proto
// Protobuf Java Version: 3.25.3
package com.palantir.atlasdb.protos.generated;
public final class StreamPersistence {
private StreamPersistence() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
/**
* Protobuf enum {@code com.palantir.atlasdb.protos.generated.Status}
*/
public enum Status
implements com.google.protobuf.ProtocolMessageEnum {
/**
* STORING = 1;
*/
STORING(1),
/**
* STORED = 2;
*/
STORED(2),
/**
* FAILED = 3;
*/
FAILED(3),
;
/**
* STORING = 1;
*/
public static final int STORING_VALUE = 1;
/**
* STORED = 2;
*/
public static final int STORED_VALUE = 2;
/**
* FAILED = 3;
*/
public static final int FAILED_VALUE = 3;
public final int getNumber() {
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Status valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static Status forNumber(int value) {
switch (value) {
case 1: return STORING;
case 2: return STORED;
case 3: return FAILED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Status> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Status findValueByNumber(int number) {
return Status.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return com.palantir.atlasdb.protos.generated.StreamPersistence.getDescriptor().getEnumTypes().get(0);
}
private static final Status[] VALUES = values();
public static Status valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int value;
private Status(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:com.palantir.atlasdb.protos.generated.Status)
}
public interface StreamMetadataOrBuilder extends
// @@protoc_insertion_point(interface_extends:com.palantir.atlasdb.protos.generated.StreamMetadata)
com.google.protobuf.MessageOrBuilder {
/**
* required .com.palantir.atlasdb.protos.generated.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
* required .com.palantir.atlasdb.protos.generated.Status status = 1;
* @return The status.
*/
com.palantir.atlasdb.protos.generated.StreamPersistence.Status getStatus();
/**
* required int64 length = 2;
* @return Whether the length field is set.
*/
boolean hasLength();
/**
* required int64 length = 2;
* @return The length.
*/
long getLength();
/**
* required bytes hash = 3;
* @return Whether the hash field is set.
*/
boolean hasHash();
/**
* required bytes hash = 3;
* @return The hash.
*/
com.google.protobuf.ByteString getHash();
}
/**
* Protobuf type {@code com.palantir.atlasdb.protos.generated.StreamMetadata}
*/
public static final class StreamMetadata extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.palantir.atlasdb.protos.generated.StreamMetadata)
StreamMetadataOrBuilder {
private static final long serialVersionUID = 0L;
// Use StreamMetadata.newBuilder() to construct.
private StreamMetadata(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StreamMetadata() {
status_ = 1;
hash_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new StreamMetadata();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.palantir.atlasdb.protos.generated.StreamPersistence.internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.palantir.atlasdb.protos.generated.StreamPersistence.internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata.class, com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata.Builder.class);
}
private int bitField0_;
public static final int STATUS_FIELD_NUMBER = 1;
private int status_ = 1;
/**
* required .com.palantir.atlasdb.protos.generated.Status status = 1;
* @return Whether the status field is set.
*/
@java.lang.Override public boolean hasStatus() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* required .com.palantir.atlasdb.protos.generated.Status status = 1;
* @return The status.
*/
@java.lang.Override public com.palantir.atlasdb.protos.generated.StreamPersistence.Status getStatus() {
com.palantir.atlasdb.protos.generated.StreamPersistence.Status result = com.palantir.atlasdb.protos.generated.StreamPersistence.Status.forNumber(status_);
return result == null ? com.palantir.atlasdb.protos.generated.StreamPersistence.Status.STORING : result;
}
public static final int LENGTH_FIELD_NUMBER = 2;
private long length_ = 0L;
/**
* required int64 length = 2;
* @return Whether the length field is set.
*/
@java.lang.Override
public boolean hasLength() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* required int64 length = 2;
* @return The length.
*/
@java.lang.Override
public long getLength() {
return length_;
}
public static final int HASH_FIELD_NUMBER = 3;
private com.google.protobuf.ByteString hash_ = com.google.protobuf.ByteString.EMPTY;
/**
* required bytes hash = 3;
* @return Whether the hash field is set.
*/
@java.lang.Override
public boolean hasHash() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* required bytes hash = 3;
* @return The hash.
*/
@java.lang.Override
public com.google.protobuf.ByteString getHash() {
return hash_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
if (!hasStatus()) {
memoizedIsInitialized = 0;
return false;
}
if (!hasLength()) {
memoizedIsInitialized = 0;
return false;
}
if (!hasHash()) {
memoizedIsInitialized = 0;
return false;
}
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (((bitField0_ & 0x00000001) != 0)) {
output.writeEnum(1, status_);
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeInt64(2, length_);
}
if (((bitField0_ & 0x00000004) != 0)) {
output.writeBytes(3, hash_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, status_);
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(2, length_);
}
if (((bitField0_ & 0x00000004) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, hash_);
}
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.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata)) {
return super.equals(obj);
}
com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata other = (com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata) obj;
if (hasStatus() != other.hasStatus()) return false;
if (hasStatus()) {
if (status_ != other.status_) return false;
}
if (hasLength() != other.hasLength()) return false;
if (hasLength()) {
if (getLength()
!= other.getLength()) return false;
}
if (hasHash() != other.hasHash()) return false;
if (hasHash()) {
if (!getHash()
.equals(other.getHash())) 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();
if (hasStatus()) {
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
}
if (hasLength()) {
hash = (37 * hash) + LENGTH_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getLength());
}
if (hasHash()) {
hash = (37 * hash) + HASH_FIELD_NUMBER;
hash = (53 * hash) + getHash().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata 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.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata 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.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata 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.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata 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 com.palantir.atlasdb.protos.generated.StreamMetadata}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.palantir.atlasdb.protos.generated.StreamMetadata)
com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadataOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.palantir.atlasdb.protos.generated.StreamPersistence.internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.palantir.atlasdb.protos.generated.StreamPersistence.internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata.class, com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata.Builder.class);
}
// Construct using com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
status_ = 1;
length_ = 0L;
hash_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.palantir.atlasdb.protos.generated.StreamPersistence.internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_descriptor;
}
@java.lang.Override
public com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata getDefaultInstanceForType() {
return com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata.getDefaultInstance();
}
@java.lang.Override
public com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata build() {
com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata buildPartial() {
com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata result = new com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.status_ = status_;
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.length_ = length_;
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.hash_ = hash_;
to_bitField0_ |= 0x00000004;
}
result.bitField0_ |= to_bitField0_;
}
@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.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata) {
return mergeFrom((com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata other) {
if (other == com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata.getDefaultInstance()) return this;
if (other.hasStatus()) {
setStatus(other.getStatus());
}
if (other.hasLength()) {
setLength(other.getLength());
}
if (other.hasHash()) {
setHash(other.getHash());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
if (!hasStatus()) {
return false;
}
if (!hasLength()) {
return false;
}
if (!hasHash()) {
return false;
}
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: {
int tmpRaw = input.readEnum();
com.palantir.atlasdb.protos.generated.StreamPersistence.Status tmpValue =
com.palantir.atlasdb.protos.generated.StreamPersistence.Status.forNumber(tmpRaw);
if (tmpValue == null) {
mergeUnknownVarintField(1, tmpRaw);
} else {
status_ = tmpRaw;
bitField0_ |= 0x00000001;
}
break;
} // case 8
case 16: {
length_ = input.readInt64();
bitField0_ |= 0x00000002;
break;
} // case 16
case 26: {
hash_ = input.readBytes();
bitField0_ |= 0x00000004;
break;
} // case 26
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 status_ = 1;
/**
* required .com.palantir.atlasdb.protos.generated.Status status = 1;
* @return Whether the status field is set.
*/
@java.lang.Override public boolean hasStatus() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* required .com.palantir.atlasdb.protos.generated.Status status = 1;
* @return The status.
*/
@java.lang.Override
public com.palantir.atlasdb.protos.generated.StreamPersistence.Status getStatus() {
com.palantir.atlasdb.protos.generated.StreamPersistence.Status result = com.palantir.atlasdb.protos.generated.StreamPersistence.Status.forNumber(status_);
return result == null ? com.palantir.atlasdb.protos.generated.StreamPersistence.Status.STORING : result;
}
/**
* required .com.palantir.atlasdb.protos.generated.Status status = 1;
* @param value The status to set.
* @return This builder for chaining.
*/
public Builder setStatus(com.palantir.atlasdb.protos.generated.StreamPersistence.Status value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
status_ = value.getNumber();
onChanged();
return this;
}
/**
* required .com.palantir.atlasdb.protos.generated.Status status = 1;
* @return This builder for chaining.
*/
public Builder clearStatus() {
bitField0_ = (bitField0_ & ~0x00000001);
status_ = 1;
onChanged();
return this;
}
private long length_ ;
/**
* required int64 length = 2;
* @return Whether the length field is set.
*/
@java.lang.Override
public boolean hasLength() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* required int64 length = 2;
* @return The length.
*/
@java.lang.Override
public long getLength() {
return length_;
}
/**
* required int64 length = 2;
* @param value The length to set.
* @return This builder for chaining.
*/
public Builder setLength(long value) {
length_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* required int64 length = 2;
* @return This builder for chaining.
*/
public Builder clearLength() {
bitField0_ = (bitField0_ & ~0x00000002);
length_ = 0L;
onChanged();
return this;
}
private com.google.protobuf.ByteString hash_ = com.google.protobuf.ByteString.EMPTY;
/**
* required bytes hash = 3;
* @return Whether the hash field is set.
*/
@java.lang.Override
public boolean hasHash() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* required bytes hash = 3;
* @return The hash.
*/
@java.lang.Override
public com.google.protobuf.ByteString getHash() {
return hash_;
}
/**
* required bytes hash = 3;
* @param value The hash to set.
* @return This builder for chaining.
*/
public Builder setHash(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
hash_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* required bytes hash = 3;
* @return This builder for chaining.
*/
public Builder clearHash() {
bitField0_ = (bitField0_ & ~0x00000004);
hash_ = getDefaultInstance().getHash();
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:com.palantir.atlasdb.protos.generated.StreamMetadata)
}
// @@protoc_insertion_point(class_scope:com.palantir.atlasdb.protos.generated.StreamMetadata)
private static final com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata();
}
public static com.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata getDefaultInstance() {
return DEFAULT_INSTANCE;
}
@java.lang.Deprecated public static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StreamMetadata 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.palantir.atlasdb.protos.generated.StreamPersistence.StreamMetadata getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\n\027StreamPersistence.proto\022%com.palantir." +
"atlasdb.protos.generated\"m\n\016StreamMetada" +
"ta\022=\n\006status\030\001 \002(\0162-.com.palantir.atlasd" +
"b.protos.generated.Status\022\016\n\006length\030\002 \002(" +
"\003\022\014\n\004hash\030\003 \002(\014*-\n\006Status\022\013\n\007STORING\020\001\022\n" +
"\n\006STORED\020\002\022\n\n\006FAILED\020\003"
};
descriptor = com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
});
internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_com_palantir_atlasdb_protos_generated_StreamMetadata_descriptor,
new java.lang.String[] { "Status", "Length", "Hash", });
}
// @@protoc_insertion_point(outer_class_scope)
}