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.hederahashgraph.api.proto.java.CryptoAllowance Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: crypto_approve_allowance.proto
package com.hederahashgraph.api.proto.java;
/**
*
**
* An approved allowance of hbar transfers for a spender.
*
*
* Protobuf type {@code proto.CryptoAllowance}
*/
public final class CryptoAllowance extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.CryptoAllowance)
CryptoAllowanceOrBuilder {
private static final long serialVersionUID = 0L;
// Use CryptoAllowance.newBuilder() to construct.
private CryptoAllowance(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private CryptoAllowance() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new CryptoAllowance();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private CryptoAllowance(
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 10: {
com.hederahashgraph.api.proto.java.AccountID.Builder subBuilder = null;
if (owner_ != null) {
subBuilder = owner_.toBuilder();
}
owner_ = input.readMessage(com.hederahashgraph.api.proto.java.AccountID.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(owner_);
owner_ = subBuilder.buildPartial();
}
break;
}
case 18: {
com.hederahashgraph.api.proto.java.AccountID.Builder subBuilder = null;
if (spender_ != null) {
subBuilder = spender_.toBuilder();
}
spender_ = input.readMessage(com.hederahashgraph.api.proto.java.AccountID.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(spender_);
spender_ = subBuilder.buildPartial();
}
break;
}
case 24: {
amount_ = input.readInt64();
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.hederahashgraph.api.proto.java.CryptoApproveAllowance.internal_static_proto_CryptoAllowance_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.CryptoApproveAllowance.internal_static_proto_CryptoAllowance_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.CryptoAllowance.class, com.hederahashgraph.api.proto.java.CryptoAllowance.Builder.class);
}
public static final int OWNER_FIELD_NUMBER = 1;
private com.hederahashgraph.api.proto.java.AccountID owner_;
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
* @return Whether the owner field is set.
*/
@java.lang.Override
public boolean hasOwner() {
return owner_ != null;
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
* @return The owner.
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountID getOwner() {
return owner_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : owner_;
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getOwnerOrBuilder() {
return getOwner();
}
public static final int SPENDER_FIELD_NUMBER = 2;
private com.hederahashgraph.api.proto.java.AccountID spender_;
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
* @return Whether the spender field is set.
*/
@java.lang.Override
public boolean hasSpender() {
return spender_ != null;
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
* @return The spender.
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountID getSpender() {
return spender_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : spender_;
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getSpenderOrBuilder() {
return getSpender();
}
public static final int AMOUNT_FIELD_NUMBER = 3;
private long amount_;
/**
*
**
* The amount of the spender's allowance in tinybars.
*
*
* int64 amount = 3;
* @return The amount.
*/
@java.lang.Override
public long getAmount() {
return amount_;
}
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 (owner_ != null) {
output.writeMessage(1, getOwner());
}
if (spender_ != null) {
output.writeMessage(2, getSpender());
}
if (amount_ != 0L) {
output.writeInt64(3, amount_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (owner_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getOwner());
}
if (spender_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getSpender());
}
if (amount_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(3, amount_);
}
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.hederahashgraph.api.proto.java.CryptoAllowance)) {
return super.equals(obj);
}
com.hederahashgraph.api.proto.java.CryptoAllowance other = (com.hederahashgraph.api.proto.java.CryptoAllowance) obj;
if (hasOwner() != other.hasOwner()) return false;
if (hasOwner()) {
if (!getOwner()
.equals(other.getOwner())) return false;
}
if (hasSpender() != other.hasSpender()) return false;
if (hasSpender()) {
if (!getSpender()
.equals(other.getSpender())) return false;
}
if (getAmount()
!= other.getAmount()) 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();
if (hasOwner()) {
hash = (37 * hash) + OWNER_FIELD_NUMBER;
hash = (53 * hash) + getOwner().hashCode();
}
if (hasSpender()) {
hash = (37 * hash) + SPENDER_FIELD_NUMBER;
hash = (53 * hash) + getSpender().hashCode();
}
hash = (37 * hash) + AMOUNT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getAmount());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance 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.hederahashgraph.api.proto.java.CryptoAllowance parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance 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.hederahashgraph.api.proto.java.CryptoAllowance parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance 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.hederahashgraph.api.proto.java.CryptoAllowance 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;
}
/**
*
**
* An approved allowance of hbar transfers for a spender.
*
*
* Protobuf type {@code proto.CryptoAllowance}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.CryptoAllowance)
com.hederahashgraph.api.proto.java.CryptoAllowanceOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.CryptoApproveAllowance.internal_static_proto_CryptoAllowance_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.CryptoApproveAllowance.internal_static_proto_CryptoAllowance_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.CryptoAllowance.class, com.hederahashgraph.api.proto.java.CryptoAllowance.Builder.class);
}
// Construct using com.hederahashgraph.api.proto.java.CryptoAllowance.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();
if (ownerBuilder_ == null) {
owner_ = null;
} else {
owner_ = null;
ownerBuilder_ = null;
}
if (spenderBuilder_ == null) {
spender_ = null;
} else {
spender_ = null;
spenderBuilder_ = null;
}
amount_ = 0L;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hederahashgraph.api.proto.java.CryptoApproveAllowance.internal_static_proto_CryptoAllowance_descriptor;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.CryptoAllowance getDefaultInstanceForType() {
return com.hederahashgraph.api.proto.java.CryptoAllowance.getDefaultInstance();
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.CryptoAllowance build() {
com.hederahashgraph.api.proto.java.CryptoAllowance result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.CryptoAllowance buildPartial() {
com.hederahashgraph.api.proto.java.CryptoAllowance result = new com.hederahashgraph.api.proto.java.CryptoAllowance(this);
if (ownerBuilder_ == null) {
result.owner_ = owner_;
} else {
result.owner_ = ownerBuilder_.build();
}
if (spenderBuilder_ == null) {
result.spender_ = spender_;
} else {
result.spender_ = spenderBuilder_.build();
}
result.amount_ = amount_;
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.hederahashgraph.api.proto.java.CryptoAllowance) {
return mergeFrom((com.hederahashgraph.api.proto.java.CryptoAllowance)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hederahashgraph.api.proto.java.CryptoAllowance other) {
if (other == com.hederahashgraph.api.proto.java.CryptoAllowance.getDefaultInstance()) return this;
if (other.hasOwner()) {
mergeOwner(other.getOwner());
}
if (other.hasSpender()) {
mergeSpender(other.getSpender());
}
if (other.getAmount() != 0L) {
setAmount(other.getAmount());
}
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.hederahashgraph.api.proto.java.CryptoAllowance parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hederahashgraph.api.proto.java.CryptoAllowance) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.hederahashgraph.api.proto.java.AccountID owner_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder> ownerBuilder_;
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
* @return Whether the owner field is set.
*/
public boolean hasOwner() {
return ownerBuilder_ != null || owner_ != null;
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
* @return The owner.
*/
public com.hederahashgraph.api.proto.java.AccountID getOwner() {
if (ownerBuilder_ == null) {
return owner_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : owner_;
} else {
return ownerBuilder_.getMessage();
}
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
*/
public Builder setOwner(com.hederahashgraph.api.proto.java.AccountID value) {
if (ownerBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
owner_ = value;
onChanged();
} else {
ownerBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
*/
public Builder setOwner(
com.hederahashgraph.api.proto.java.AccountID.Builder builderForValue) {
if (ownerBuilder_ == null) {
owner_ = builderForValue.build();
onChanged();
} else {
ownerBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
*/
public Builder mergeOwner(com.hederahashgraph.api.proto.java.AccountID value) {
if (ownerBuilder_ == null) {
if (owner_ != null) {
owner_ =
com.hederahashgraph.api.proto.java.AccountID.newBuilder(owner_).mergeFrom(value).buildPartial();
} else {
owner_ = value;
}
onChanged();
} else {
ownerBuilder_.mergeFrom(value);
}
return this;
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
*/
public Builder clearOwner() {
if (ownerBuilder_ == null) {
owner_ = null;
onChanged();
} else {
owner_ = null;
ownerBuilder_ = null;
}
return this;
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
*/
public com.hederahashgraph.api.proto.java.AccountID.Builder getOwnerBuilder() {
onChanged();
return getOwnerFieldBuilder().getBuilder();
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
*/
public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getOwnerOrBuilder() {
if (ownerBuilder_ != null) {
return ownerBuilder_.getMessageOrBuilder();
} else {
return owner_ == null ?
com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : owner_;
}
}
/**
*
**
* The account ID of the hbar owner (ie. the grantor of the allowance).
*
*
* .proto.AccountID owner = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>
getOwnerFieldBuilder() {
if (ownerBuilder_ == null) {
ownerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>(
getOwner(),
getParentForChildren(),
isClean());
owner_ = null;
}
return ownerBuilder_;
}
private com.hederahashgraph.api.proto.java.AccountID spender_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder> spenderBuilder_;
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
* @return Whether the spender field is set.
*/
public boolean hasSpender() {
return spenderBuilder_ != null || spender_ != null;
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
* @return The spender.
*/
public com.hederahashgraph.api.proto.java.AccountID getSpender() {
if (spenderBuilder_ == null) {
return spender_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : spender_;
} else {
return spenderBuilder_.getMessage();
}
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
*/
public Builder setSpender(com.hederahashgraph.api.proto.java.AccountID value) {
if (spenderBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
spender_ = value;
onChanged();
} else {
spenderBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
*/
public Builder setSpender(
com.hederahashgraph.api.proto.java.AccountID.Builder builderForValue) {
if (spenderBuilder_ == null) {
spender_ = builderForValue.build();
onChanged();
} else {
spenderBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
*/
public Builder mergeSpender(com.hederahashgraph.api.proto.java.AccountID value) {
if (spenderBuilder_ == null) {
if (spender_ != null) {
spender_ =
com.hederahashgraph.api.proto.java.AccountID.newBuilder(spender_).mergeFrom(value).buildPartial();
} else {
spender_ = value;
}
onChanged();
} else {
spenderBuilder_.mergeFrom(value);
}
return this;
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
*/
public Builder clearSpender() {
if (spenderBuilder_ == null) {
spender_ = null;
onChanged();
} else {
spender_ = null;
spenderBuilder_ = null;
}
return this;
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
*/
public com.hederahashgraph.api.proto.java.AccountID.Builder getSpenderBuilder() {
onChanged();
return getSpenderFieldBuilder().getBuilder();
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
*/
public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getSpenderOrBuilder() {
if (spenderBuilder_ != null) {
return spenderBuilder_.getMessageOrBuilder();
} else {
return spender_ == null ?
com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : spender_;
}
}
/**
*
**
* The account ID of the spender of the hbar allowance.
*
*
* .proto.AccountID spender = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>
getSpenderFieldBuilder() {
if (spenderBuilder_ == null) {
spenderBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>(
getSpender(),
getParentForChildren(),
isClean());
spender_ = null;
}
return spenderBuilder_;
}
private long amount_ ;
/**
*
**
* The amount of the spender's allowance in tinybars.
*
*
* int64 amount = 3;
* @return The amount.
*/
@java.lang.Override
public long getAmount() {
return amount_;
}
/**
*
**
* The amount of the spender's allowance in tinybars.
*
*
* int64 amount = 3;
* @param value The amount to set.
* @return This builder for chaining.
*/
public Builder setAmount(long value) {
amount_ = value;
onChanged();
return this;
}
/**
*
**
* The amount of the spender's allowance in tinybars.
*
*
* int64 amount = 3;
* @return This builder for chaining.
*/
public Builder clearAmount() {
amount_ = 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.CryptoAllowance)
}
// @@protoc_insertion_point(class_scope:proto.CryptoAllowance)
private static final com.hederahashgraph.api.proto.java.CryptoAllowance DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.CryptoAllowance();
}
public static com.hederahashgraph.api.proto.java.CryptoAllowance getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public CryptoAllowance parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new CryptoAllowance(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.hederahashgraph.api.proto.java.CryptoAllowance getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}