com.hedera.hashgraph.sdk.proto.ContractNonceInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: contract_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* Info about a contract account's nonce value.
* A nonce of a contract is only incremented when that contract creates another contract.
*
*
* Protobuf type {@code proto.ContractNonceInfo}
*/
public final class ContractNonceInfo extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.ContractNonceInfo)
ContractNonceInfoOrBuilder {
private static final long serialVersionUID = 0L;
// Use ContractNonceInfo.newBuilder() to construct.
private ContractNonceInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ContractNonceInfo() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new ContractNonceInfo();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.ContractTypes.internal_static_proto_ContractNonceInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.ContractTypes.internal_static_proto_ContractNonceInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.ContractNonceInfo.class, com.hedera.hashgraph.sdk.proto.ContractNonceInfo.Builder.class);
}
private int bitField0_;
public static final int CONTRACT_ID_FIELD_NUMBER = 1;
private com.hedera.hashgraph.sdk.proto.ContractID contractId_;
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
* @return Whether the contractId field is set.
*/
@java.lang.Override
public boolean hasContractId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
* @return The contractId.
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ContractID getContractId() {
return contractId_ == null ? com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance() : contractId_;
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIdOrBuilder() {
return contractId_ == null ? com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance() : contractId_;
}
public static final int NONCE_FIELD_NUMBER = 2;
private long nonce_ = 0L;
/**
*
**
* The current value of the contract account's nonce property
*
*
* int64 nonce = 2;
* @return The nonce.
*/
@java.lang.Override
public long getNonce() {
return nonce_;
}
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 (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getContractId());
}
if (nonce_ != 0L) {
output.writeInt64(2, nonce_);
}
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
.computeMessageSize(1, getContractId());
}
if (nonce_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(2, nonce_);
}
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.hedera.hashgraph.sdk.proto.ContractNonceInfo)) {
return super.equals(obj);
}
com.hedera.hashgraph.sdk.proto.ContractNonceInfo other = (com.hedera.hashgraph.sdk.proto.ContractNonceInfo) obj;
if (hasContractId() != other.hasContractId()) return false;
if (hasContractId()) {
if (!getContractId()
.equals(other.getContractId())) return false;
}
if (getNonce()
!= other.getNonce()) 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 (hasContractId()) {
hash = (37 * hash) + CONTRACT_ID_FIELD_NUMBER;
hash = (53 * hash) + getContractId().hashCode();
}
hash = (37 * hash) + NONCE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getNonce());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo 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.hashgraph.sdk.proto.ContractNonceInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo 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.hashgraph.sdk.proto.ContractNonceInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo 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.hashgraph.sdk.proto.ContractNonceInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo 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.hashgraph.sdk.proto.ContractNonceInfo 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;
}
/**
*
**
* Info about a contract account's nonce value.
* A nonce of a contract is only incremented when that contract creates another contract.
*
*
* Protobuf type {@code proto.ContractNonceInfo}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.ContractNonceInfo)
com.hedera.hashgraph.sdk.proto.ContractNonceInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.hashgraph.sdk.proto.ContractTypes.internal_static_proto_ContractNonceInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.hashgraph.sdk.proto.ContractTypes.internal_static_proto_ContractNonceInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.hashgraph.sdk.proto.ContractNonceInfo.class, com.hedera.hashgraph.sdk.proto.ContractNonceInfo.Builder.class);
}
// Construct using com.hedera.hashgraph.sdk.proto.ContractNonceInfo.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getContractIdFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
contractId_ = null;
if (contractIdBuilder_ != null) {
contractIdBuilder_.dispose();
contractIdBuilder_ = null;
}
nonce_ = 0L;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.hashgraph.sdk.proto.ContractTypes.internal_static_proto_ContractNonceInfo_descriptor;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ContractNonceInfo getDefaultInstanceForType() {
return com.hedera.hashgraph.sdk.proto.ContractNonceInfo.getDefaultInstance();
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ContractNonceInfo build() {
com.hedera.hashgraph.sdk.proto.ContractNonceInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.ContractNonceInfo buildPartial() {
com.hedera.hashgraph.sdk.proto.ContractNonceInfo result = new com.hedera.hashgraph.sdk.proto.ContractNonceInfo(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.hedera.hashgraph.sdk.proto.ContractNonceInfo result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.contractId_ = contractIdBuilder_ == null
? contractId_
: contractIdBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.nonce_ = nonce_;
}
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.hedera.hashgraph.sdk.proto.ContractNonceInfo) {
return mergeFrom((com.hedera.hashgraph.sdk.proto.ContractNonceInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.ContractNonceInfo other) {
if (other == com.hedera.hashgraph.sdk.proto.ContractNonceInfo.getDefaultInstance()) return this;
if (other.hasContractId()) {
mergeContractId(other.getContractId());
}
if (other.getNonce() != 0L) {
setNonce(other.getNonce());
}
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 10: {
input.readMessage(
getContractIdFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 16: {
nonce_ = input.readInt64();
bitField0_ |= 0x00000002;
break;
} // case 16
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 com.hedera.hashgraph.sdk.proto.ContractID contractId_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.ContractID, com.hedera.hashgraph.sdk.proto.ContractID.Builder, com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder> contractIdBuilder_;
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
* @return Whether the contractId field is set.
*/
public boolean hasContractId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
* @return The contractId.
*/
public com.hedera.hashgraph.sdk.proto.ContractID getContractId() {
if (contractIdBuilder_ == null) {
return contractId_ == null ? com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance() : contractId_;
} else {
return contractIdBuilder_.getMessage();
}
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
public Builder setContractId(com.hedera.hashgraph.sdk.proto.ContractID value) {
if (contractIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
contractId_ = value;
} else {
contractIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
public Builder setContractId(
com.hedera.hashgraph.sdk.proto.ContractID.Builder builderForValue) {
if (contractIdBuilder_ == null) {
contractId_ = builderForValue.build();
} else {
contractIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
public Builder mergeContractId(com.hedera.hashgraph.sdk.proto.ContractID value) {
if (contractIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
contractId_ != null &&
contractId_ != com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance()) {
getContractIdBuilder().mergeFrom(value);
} else {
contractId_ = value;
}
} else {
contractIdBuilder_.mergeFrom(value);
}
if (contractId_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
public Builder clearContractId() {
bitField0_ = (bitField0_ & ~0x00000001);
contractId_ = null;
if (contractIdBuilder_ != null) {
contractIdBuilder_.dispose();
contractIdBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
public com.hedera.hashgraph.sdk.proto.ContractID.Builder getContractIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getContractIdFieldBuilder().getBuilder();
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
public com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIdOrBuilder() {
if (contractIdBuilder_ != null) {
return contractIdBuilder_.getMessageOrBuilder();
} else {
return contractId_ == null ?
com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance() : contractId_;
}
}
/**
*
**
* Id of the contract
*
*
* .proto.ContractID contract_id = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.ContractID, com.hedera.hashgraph.sdk.proto.ContractID.Builder, com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder>
getContractIdFieldBuilder() {
if (contractIdBuilder_ == null) {
contractIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hedera.hashgraph.sdk.proto.ContractID, com.hedera.hashgraph.sdk.proto.ContractID.Builder, com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder>(
getContractId(),
getParentForChildren(),
isClean());
contractId_ = null;
}
return contractIdBuilder_;
}
private long nonce_ ;
/**
*
**
* The current value of the contract account's nonce property
*
*
* int64 nonce = 2;
* @return The nonce.
*/
@java.lang.Override
public long getNonce() {
return nonce_;
}
/**
*
**
* The current value of the contract account's nonce property
*
*
* int64 nonce = 2;
* @param value The nonce to set.
* @return This builder for chaining.
*/
public Builder setNonce(long value) {
nonce_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
**
* The current value of the contract account's nonce property
*
*
* int64 nonce = 2;
* @return This builder for chaining.
*/
public Builder clearNonce() {
bitField0_ = (bitField0_ & ~0x00000002);
nonce_ = 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:proto.ContractNonceInfo)
}
// @@protoc_insertion_point(class_scope:proto.ContractNonceInfo)
private static final com.hedera.hashgraph.sdk.proto.ContractNonceInfo DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.ContractNonceInfo();
}
public static com.hedera.hashgraph.sdk.proto.ContractNonceInfo getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ContractNonceInfo 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.hedera.hashgraph.sdk.proto.ContractNonceInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}