com.hedera.services.stream.proto.ContractActions Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: contract_action.proto
package com.hedera.services.stream.proto;
/**
* Protobuf type {@code proto.ContractActions}
*/
public final class ContractActions extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.ContractActions)
ContractActionsOrBuilder {
private static final long serialVersionUID = 0L;
// Use ContractActions.newBuilder() to construct.
private ContractActions(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ContractActions() {
contractActions_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new ContractActions();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ContractActions(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
contractActions_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
contractActions_.add(
input.readMessage(com.hedera.services.stream.proto.ContractAction.parser(), extensionRegistry));
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 {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
contractActions_ = java.util.Collections.unmodifiableList(contractActions_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.services.stream.proto.ContractActionOuterClass.internal_static_proto_ContractActions_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.services.stream.proto.ContractActionOuterClass.internal_static_proto_ContractActions_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.services.stream.proto.ContractActions.class, com.hedera.services.stream.proto.ContractActions.Builder.class);
}
public static final int CONTRACT_ACTIONS_FIELD_NUMBER = 1;
private java.util.List contractActions_;
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
@java.lang.Override
public java.util.List getContractActionsList() {
return contractActions_;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
@java.lang.Override
public java.util.List extends com.hedera.services.stream.proto.ContractActionOrBuilder>
getContractActionsOrBuilderList() {
return contractActions_;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
@java.lang.Override
public int getContractActionsCount() {
return contractActions_.size();
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
@java.lang.Override
public com.hedera.services.stream.proto.ContractAction getContractActions(int index) {
return contractActions_.get(index);
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
@java.lang.Override
public com.hedera.services.stream.proto.ContractActionOrBuilder getContractActionsOrBuilder(
int index) {
return contractActions_.get(index);
}
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 {
for (int i = 0; i < contractActions_.size(); i++) {
output.writeMessage(1, contractActions_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < contractActions_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, contractActions_.get(i));
}
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.ContractActions)) {
return super.equals(obj);
}
com.hedera.services.stream.proto.ContractActions other = (com.hedera.services.stream.proto.ContractActions) obj;
if (!getContractActionsList()
.equals(other.getContractActionsList())) 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 (getContractActionsCount() > 0) {
hash = (37 * hash) + CONTRACT_ACTIONS_FIELD_NUMBER;
hash = (53 * hash) + getContractActionsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hedera.services.stream.proto.ContractActions parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.ContractActions 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.ContractActions parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.ContractActions 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.ContractActions parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hedera.services.stream.proto.ContractActions 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.ContractActions parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hedera.services.stream.proto.ContractActions 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.ContractActions parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hedera.services.stream.proto.ContractActions 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.ContractActions 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.ContractActions 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.ContractActions 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 proto.ContractActions}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.ContractActions)
com.hedera.services.stream.proto.ContractActionsOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hedera.services.stream.proto.ContractActionOuterClass.internal_static_proto_ContractActions_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hedera.services.stream.proto.ContractActionOuterClass.internal_static_proto_ContractActions_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hedera.services.stream.proto.ContractActions.class, com.hedera.services.stream.proto.ContractActions.Builder.class);
}
// Construct using com.hedera.services.stream.proto.ContractActions.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getContractActionsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (contractActionsBuilder_ == null) {
contractActions_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
contractActionsBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hedera.services.stream.proto.ContractActionOuterClass.internal_static_proto_ContractActions_descriptor;
}
@java.lang.Override
public com.hedera.services.stream.proto.ContractActions getDefaultInstanceForType() {
return com.hedera.services.stream.proto.ContractActions.getDefaultInstance();
}
@java.lang.Override
public com.hedera.services.stream.proto.ContractActions build() {
com.hedera.services.stream.proto.ContractActions result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hedera.services.stream.proto.ContractActions buildPartial() {
com.hedera.services.stream.proto.ContractActions result = new com.hedera.services.stream.proto.ContractActions(this);
int from_bitField0_ = bitField0_;
if (contractActionsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
contractActions_ = java.util.Collections.unmodifiableList(contractActions_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.contractActions_ = contractActions_;
} else {
result.contractActions_ = contractActionsBuilder_.build();
}
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.ContractActions) {
return mergeFrom((com.hedera.services.stream.proto.ContractActions)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hedera.services.stream.proto.ContractActions other) {
if (other == com.hedera.services.stream.proto.ContractActions.getDefaultInstance()) return this;
if (contractActionsBuilder_ == null) {
if (!other.contractActions_.isEmpty()) {
if (contractActions_.isEmpty()) {
contractActions_ = other.contractActions_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureContractActionsIsMutable();
contractActions_.addAll(other.contractActions_);
}
onChanged();
}
} else {
if (!other.contractActions_.isEmpty()) {
if (contractActionsBuilder_.isEmpty()) {
contractActionsBuilder_.dispose();
contractActionsBuilder_ = null;
contractActions_ = other.contractActions_;
bitField0_ = (bitField0_ & ~0x00000001);
contractActionsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getContractActionsFieldBuilder() : null;
} else {
contractActionsBuilder_.addAllMessages(other.contractActions_);
}
}
}
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.ContractActions parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hedera.services.stream.proto.ContractActions) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List contractActions_ =
java.util.Collections.emptyList();
private void ensureContractActionsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
contractActions_ = new java.util.ArrayList(contractActions_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.services.stream.proto.ContractAction, com.hedera.services.stream.proto.ContractAction.Builder, com.hedera.services.stream.proto.ContractActionOrBuilder> contractActionsBuilder_;
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public java.util.List getContractActionsList() {
if (contractActionsBuilder_ == null) {
return java.util.Collections.unmodifiableList(contractActions_);
} else {
return contractActionsBuilder_.getMessageList();
}
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public int getContractActionsCount() {
if (contractActionsBuilder_ == null) {
return contractActions_.size();
} else {
return contractActionsBuilder_.getCount();
}
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public com.hedera.services.stream.proto.ContractAction getContractActions(int index) {
if (contractActionsBuilder_ == null) {
return contractActions_.get(index);
} else {
return contractActionsBuilder_.getMessage(index);
}
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder setContractActions(
int index, com.hedera.services.stream.proto.ContractAction value) {
if (contractActionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContractActionsIsMutable();
contractActions_.set(index, value);
onChanged();
} else {
contractActionsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder setContractActions(
int index, com.hedera.services.stream.proto.ContractAction.Builder builderForValue) {
if (contractActionsBuilder_ == null) {
ensureContractActionsIsMutable();
contractActions_.set(index, builderForValue.build());
onChanged();
} else {
contractActionsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder addContractActions(com.hedera.services.stream.proto.ContractAction value) {
if (contractActionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContractActionsIsMutable();
contractActions_.add(value);
onChanged();
} else {
contractActionsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder addContractActions(
int index, com.hedera.services.stream.proto.ContractAction value) {
if (contractActionsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContractActionsIsMutable();
contractActions_.add(index, value);
onChanged();
} else {
contractActionsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder addContractActions(
com.hedera.services.stream.proto.ContractAction.Builder builderForValue) {
if (contractActionsBuilder_ == null) {
ensureContractActionsIsMutable();
contractActions_.add(builderForValue.build());
onChanged();
} else {
contractActionsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder addContractActions(
int index, com.hedera.services.stream.proto.ContractAction.Builder builderForValue) {
if (contractActionsBuilder_ == null) {
ensureContractActionsIsMutable();
contractActions_.add(index, builderForValue.build());
onChanged();
} else {
contractActionsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder addAllContractActions(
java.lang.Iterable extends com.hedera.services.stream.proto.ContractAction> values) {
if (contractActionsBuilder_ == null) {
ensureContractActionsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, contractActions_);
onChanged();
} else {
contractActionsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder clearContractActions() {
if (contractActionsBuilder_ == null) {
contractActions_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
contractActionsBuilder_.clear();
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public Builder removeContractActions(int index) {
if (contractActionsBuilder_ == null) {
ensureContractActionsIsMutable();
contractActions_.remove(index);
onChanged();
} else {
contractActionsBuilder_.remove(index);
}
return this;
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public com.hedera.services.stream.proto.ContractAction.Builder getContractActionsBuilder(
int index) {
return getContractActionsFieldBuilder().getBuilder(index);
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public com.hedera.services.stream.proto.ContractActionOrBuilder getContractActionsOrBuilder(
int index) {
if (contractActionsBuilder_ == null) {
return contractActions_.get(index); } else {
return contractActionsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public java.util.List extends com.hedera.services.stream.proto.ContractActionOrBuilder>
getContractActionsOrBuilderList() {
if (contractActionsBuilder_ != null) {
return contractActionsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(contractActions_);
}
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public com.hedera.services.stream.proto.ContractAction.Builder addContractActionsBuilder() {
return getContractActionsFieldBuilder().addBuilder(
com.hedera.services.stream.proto.ContractAction.getDefaultInstance());
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public com.hedera.services.stream.proto.ContractAction.Builder addContractActionsBuilder(
int index) {
return getContractActionsFieldBuilder().addBuilder(
index, com.hedera.services.stream.proto.ContractAction.getDefaultInstance());
}
/**
* repeated .proto.ContractAction contract_actions = 1;
*/
public java.util.List
getContractActionsBuilderList() {
return getContractActionsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.services.stream.proto.ContractAction, com.hedera.services.stream.proto.ContractAction.Builder, com.hedera.services.stream.proto.ContractActionOrBuilder>
getContractActionsFieldBuilder() {
if (contractActionsBuilder_ == null) {
contractActionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.hedera.services.stream.proto.ContractAction, com.hedera.services.stream.proto.ContractAction.Builder, com.hedera.services.stream.proto.ContractActionOrBuilder>(
contractActions_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
contractActions_ = null;
}
return contractActionsBuilder_;
}
@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.ContractActions)
}
// @@protoc_insertion_point(class_scope:proto.ContractActions)
private static final com.hedera.services.stream.proto.ContractActions DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hedera.services.stream.proto.ContractActions();
}
public static com.hedera.services.stream.proto.ContractActions getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ContractActions parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ContractActions(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.ContractActions getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}