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.
// 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
*
**
* 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;
}
/**
*