com.hedera.services.stream.proto.HashObject Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: hash_object.proto
package com.hedera.services.stream.proto;
/**
*
**
* Encapsulates an object hash so that additional hash algorithms
* can be added in the future without requiring a breaking change.
*
*
* Protobuf type {@code proto.HashObject}
*/
public final class HashObject extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.HashObject)
HashObjectOrBuilder {
private static final long serialVersionUID = 0L;
// Use HashObject.newBuilder() to construct.
private HashObject(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private HashObject() {
algorithm_ = 0;
hash_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new HashObject();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private HashObject(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
int rawValue = input.readEnum();
algorithm_ = rawValue;
break;
}
case 16: {
length_ = input.readInt32();
break;
}
case 26: {
hash_ = input.readBytes();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.services.stream.proto.HashObjectOuterClass.internal_static_proto_HashObject_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.services.stream.proto.HashObjectOuterClass.internal_static_proto_HashObject_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.services.stream.proto.HashObject.class, com.hedera.services.stream.proto.HashObject.Builder.class);
}
public static final int ALGORITHM_FIELD_NUMBER = 1;
private int algorithm_;
/**
*
**
* Specifies the hashing algorithm
*
*
* .proto.HashAlgorithm algorithm = 1;
* @return The enum numeric value on the wire for algorithm.
*/
@java.lang.Override public int getAlgorithmValue() {
return algorithm_;
}
/**
*
**
* Specifies the hashing algorithm
*
*
* .proto.HashAlgorithm algorithm = 1;
* @return The algorithm.
*/
@java.lang.Override public com.hedera.services.stream.proto.HashAlgorithm getAlgorithm() {
@SuppressWarnings("deprecation")
com.hedera.services.stream.proto.HashAlgorithm result = com.hedera.services.stream.proto.HashAlgorithm.valueOf(algorithm_);
return result == null ? com.hedera.services.stream.proto.HashAlgorithm.UNRECOGNIZED : result;
}
public static final int LENGTH_FIELD_NUMBER = 2;
private int length_;
/**
*
**
* Hash length
*
*
* int32 length = 2;
* @return The length.
*/
@java.lang.Override
public int getLength() {
return length_;
}
public static final int HASH_FIELD_NUMBER = 3;
private com.google.protobuf.ByteString hash_;
/**
*
**
* Specifies the result of the hashing operation in bytes
*
*
* 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;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (algorithm_ != com.hedera.services.stream.proto.HashAlgorithm.HASH_ALGORITHM_UNKNOWN.getNumber()) {
output.writeEnum(1, algorithm_);
}
if (length_ != 0) {
output.writeInt32(2, length_);
}
if (!hash_.isEmpty()) {
output.writeBytes(3, hash_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (algorithm_ != com.hedera.services.stream.proto.HashAlgorithm.HASH_ALGORITHM_UNKNOWN.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, algorithm_);
}
if (length_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, length_);
}
if (!hash_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, hash_);
}
size += unknownFields.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.hedera.services.stream.proto.HashObject)) {
return super.equals(obj);
}
com.hedera.services.stream.proto.HashObject other = (com.hedera.services.stream.proto.HashObject) obj;
if (algorithm_ != other.algorithm_) return false;
if (getLength()
!= other.getLength()) return false;
if (!getHash()
.equals(other.getHash())) return false;
if (!unknownFields.equals(other.unknownFields)) 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) + ALGORITHM_FIELD_NUMBER;
hash = (53 * hash) + algorithm_;
hash = (37 * hash) + LENGTH_FIELD_NUMBER;
hash = (53 * hash) + getLength();
hash = (37 * hash) + HASH_FIELD_NUMBER;
hash = (53 * hash) + getHash().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.services.stream.proto.HashObject parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.HashObject parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.services.stream.proto.HashObject parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.HashObject parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.services.stream.proto.HashObject parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.HashObject parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.services.stream.proto.HashObject parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.services.stream.proto.HashObject 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.hedera.services.stream.proto.HashObject parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.services.stream.proto.HashObject 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.hedera.services.stream.proto.HashObject parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.services.stream.proto.HashObject 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.hedera.services.stream.proto.HashObject 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;
}
/**
*
**
* Encapsulates an object hash so that additional hash algorithms
* can be added in the future without requiring a breaking change.
*
*
* Protobuf type {@code proto.HashObject}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.HashObject)
com.hedera.services.stream.proto.HashObjectOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.services.stream.proto.HashObjectOuterClass.internal_static_proto_HashObject_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.services.stream.proto.HashObjectOuterClass.internal_static_proto_HashObject_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.services.stream.proto.HashObject.class, com.hedera.services.stream.proto.HashObject.Builder.class);
}
// Construct using com.hedera.services.stream.proto.HashObject.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
algorithm_ = 0;
length_ = 0;
hash_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.services.stream.proto.HashObjectOuterClass.internal_static_proto_HashObject_descriptor;
}
@java.lang.Override
public com.hedera.services.stream.proto.HashObject getDefaultInstanceForType() {
return com.hedera.services.stream.proto.HashObject.getDefaultInstance();
}
@java.lang.Override
public com.hedera.services.stream.proto.HashObject build() {
com.hedera.services.stream.proto.HashObject result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.services.stream.proto.HashObject buildPartial() {
com.hedera.services.stream.proto.HashObject result = new com.hedera.services.stream.proto.HashObject(this);
result.algorithm_ = algorithm_;
result.length_ = length_;
result.hash_ = hash_;
onBuilt();
return result;
}
@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.hedera.services.stream.proto.HashObject) {
return mergeFrom((com.hedera.services.stream.proto.HashObject)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.services.stream.proto.HashObject other) {
if (other == com.hedera.services.stream.proto.HashObject.getDefaultInstance()) return this;
if (other.algorithm_ != 0) {
setAlgorithmValue(other.getAlgorithmValue());
}
if (other.getLength() != 0) {
setLength(other.getLength());
}
if (other.getHash() != com.google.protobuf.ByteString.EMPTY) {
setHash(other.getHash());
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.hedera.services.stream.proto.HashObject parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hedera.services.stream.proto.HashObject) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int algorithm_ = 0;
/**
*
**
* Specifies the hashing algorithm
*
*
* .proto.HashAlgorithm algorithm = 1;
* @return The enum numeric value on the wire for algorithm.
*/
@java.lang.Override public int getAlgorithmValue() {
return algorithm_;
}
/**
*
**
* Specifies the hashing algorithm
*
*
* .proto.HashAlgorithm algorithm = 1;
* @param value The enum numeric value on the wire for algorithm to set.
* @return This builder for chaining.
*/
public Builder setAlgorithmValue(int value) {
algorithm_ = value;
onChanged();
return this;
}
/**
*
**
* Specifies the hashing algorithm
*
*
* .proto.HashAlgorithm algorithm = 1;
* @return The algorithm.
*/
@java.lang.Override
public com.hedera.services.stream.proto.HashAlgorithm getAlgorithm() {
@SuppressWarnings("deprecation")
com.hedera.services.stream.proto.HashAlgorithm result = com.hedera.services.stream.proto.HashAlgorithm.valueOf(algorithm_);
return result == null ? com.hedera.services.stream.proto.HashAlgorithm.UNRECOGNIZED : result;
}
/**
*
**
* Specifies the hashing algorithm
*
*
* .proto.HashAlgorithm algorithm = 1;
* @param value The algorithm to set.
* @return This builder for chaining.
*/
public Builder setAlgorithm(com.hedera.services.stream.proto.HashAlgorithm value) {
if (value == null) {
throw new NullPointerException();
}
algorithm_ = value.getNumber();
onChanged();
return this;
}
/**
*
**
* Specifies the hashing algorithm
*
*
* .proto.HashAlgorithm algorithm = 1;
* @return This builder for chaining.
*/
public Builder clearAlgorithm() {
algorithm_ = 0;
onChanged();
return this;
}
private int length_ ;
/**
*
**
* Hash length
*
*
* int32 length = 2;
* @return The length.
*/
@java.lang.Override
public int getLength() {
return length_;
}
/**
*
**
* Hash length
*
*
* int32 length = 2;
* @param value The length to set.
* @return This builder for chaining.
*/
public Builder setLength(int value) {
length_ = value;
onChanged();
return this;
}
/**
*
**
* Hash length
*
*
* int32 length = 2;
* @return This builder for chaining.
*/
public Builder clearLength() {
length_ = 0;
onChanged();
return this;
}
private com.google.protobuf.ByteString hash_ = com.google.protobuf.ByteString.EMPTY;
/**
*
**
* Specifies the result of the hashing operation in bytes
*
*
* bytes hash = 3;
* @return The hash.
*/
@java.lang.Override
public com.google.protobuf.ByteString getHash() {
return hash_;
}
/**
*
**
* Specifies the result of the hashing operation in bytes
*
*
* 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;
onChanged();
return this;
}
/**
*
**
* Specifies the result of the hashing operation in bytes
*
*
* bytes hash = 3;
* @return This builder for chaining.
*/
public Builder clearHash() {
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:proto.HashObject)
}
// @@protoc_insertion_point(class_scope:proto.HashObject)
private static final com.hedera.services.stream.proto.HashObject DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.services.stream.proto.HashObject();
}
public static com.hedera.services.stream.proto.HashObject getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public HashObject parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new HashObject(input, extensionRegistry);
}
};
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.hedera.services.stream.proto.HashObject getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}