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.
io.provenance.metadata.v1.p8e.Consideration Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: provenance/metadata/v1/p8e/p8e.proto
package io.provenance.metadata.v1.p8e;
/**
* Protobuf type {@code provenance.metadata.v1.p8e.Consideration}
*/
public final class Consideration extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:provenance.metadata.v1.p8e.Consideration)
ConsiderationOrBuilder {
private static final long serialVersionUID = 0L;
// Use Consideration.newBuilder() to construct.
private Consideration(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Consideration() {
considerationName_ = "";
inputs_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Consideration(
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: {
java.lang.String s = input.readStringRequireUtf8();
considerationName_ = s;
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
inputs_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
inputs_.add(
input.readMessage(io.provenance.metadata.v1.p8e.ProposedFact.parser(), extensionRegistry));
break;
}
case 26: {
io.provenance.metadata.v1.p8e.ExecutionResult.Builder subBuilder = null;
if (result_ != null) {
subBuilder = result_.toBuilder();
}
result_ = input.readMessage(io.provenance.metadata.v1.p8e.ExecutionResult.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(result_);
result_ = subBuilder.buildPartial();
}
break;
}
default: {
if (!parseUnknownFieldProto3(
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_ & 0x00000002) == 0x00000002)) {
inputs_ = java.util.Collections.unmodifiableList(inputs_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.metadata.v1.p8e.P8E.internal_static_provenance_metadata_v1_p8e_Consideration_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.metadata.v1.p8e.P8E.internal_static_provenance_metadata_v1_p8e_Consideration_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.metadata.v1.p8e.Consideration.class, io.provenance.metadata.v1.p8e.Consideration.Builder.class);
}
private int bitField0_;
public static final int CONSIDERATION_NAME_FIELD_NUMBER = 1;
private volatile java.lang.Object considerationName_;
/**
* string consideration_name = 1;
*/
public java.lang.String getConsiderationName() {
java.lang.Object ref = considerationName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
considerationName_ = s;
return s;
}
}
/**
* string consideration_name = 1;
*/
public com.google.protobuf.ByteString
getConsiderationNameBytes() {
java.lang.Object ref = considerationName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
considerationName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int INPUTS_FIELD_NUMBER = 2;
private java.util.List inputs_;
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public java.util.List getInputsList() {
return inputs_;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public java.util.List extends io.provenance.metadata.v1.p8e.ProposedFactOrBuilder>
getInputsOrBuilderList() {
return inputs_;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public int getInputsCount() {
return inputs_.size();
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public io.provenance.metadata.v1.p8e.ProposedFact getInputs(int index) {
return inputs_.get(index);
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public io.provenance.metadata.v1.p8e.ProposedFactOrBuilder getInputsOrBuilder(
int index) {
return inputs_.get(index);
}
public static final int RESULT_FIELD_NUMBER = 3;
private io.provenance.metadata.v1.p8e.ExecutionResult result_;
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public boolean hasResult() {
return result_ != null;
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public io.provenance.metadata.v1.p8e.ExecutionResult getResult() {
return result_ == null ? io.provenance.metadata.v1.p8e.ExecutionResult.getDefaultInstance() : result_;
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public io.provenance.metadata.v1.p8e.ExecutionResultOrBuilder getResultOrBuilder() {
return getResult();
}
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 (!getConsiderationNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, considerationName_);
}
for (int i = 0; i < inputs_.size(); i++) {
output.writeMessage(2, inputs_.get(i));
}
if (result_ != null) {
output.writeMessage(3, getResult());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getConsiderationNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, considerationName_);
}
for (int i = 0; i < inputs_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, inputs_.get(i));
}
if (result_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getResult());
}
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 io.provenance.metadata.v1.p8e.Consideration)) {
return super.equals(obj);
}
io.provenance.metadata.v1.p8e.Consideration other = (io.provenance.metadata.v1.p8e.Consideration) obj;
boolean result = true;
result = result && getConsiderationName()
.equals(other.getConsiderationName());
result = result && getInputsList()
.equals(other.getInputsList());
result = result && (hasResult() == other.hasResult());
if (hasResult()) {
result = result && getResult()
.equals(other.getResult());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + CONSIDERATION_NAME_FIELD_NUMBER;
hash = (53 * hash) + getConsiderationName().hashCode();
if (getInputsCount() > 0) {
hash = (37 * hash) + INPUTS_FIELD_NUMBER;
hash = (53 * hash) + getInputsList().hashCode();
}
if (hasResult()) {
hash = (37 * hash) + RESULT_FIELD_NUMBER;
hash = (53 * hash) + getResult().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.provenance.metadata.v1.p8e.Consideration parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.metadata.v1.p8e.Consideration parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.metadata.v1.p8e.Consideration parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.metadata.v1.p8e.Consideration parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.metadata.v1.p8e.Consideration parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.metadata.v1.p8e.Consideration parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.metadata.v1.p8e.Consideration parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.metadata.v1.p8e.Consideration 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 io.provenance.metadata.v1.p8e.Consideration parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.provenance.metadata.v1.p8e.Consideration 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 io.provenance.metadata.v1.p8e.Consideration parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.metadata.v1.p8e.Consideration 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(io.provenance.metadata.v1.p8e.Consideration 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 provenance.metadata.v1.p8e.Consideration}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:provenance.metadata.v1.p8e.Consideration)
io.provenance.metadata.v1.p8e.ConsiderationOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.metadata.v1.p8e.P8E.internal_static_provenance_metadata_v1_p8e_Consideration_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.metadata.v1.p8e.P8E.internal_static_provenance_metadata_v1_p8e_Consideration_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.metadata.v1.p8e.Consideration.class, io.provenance.metadata.v1.p8e.Consideration.Builder.class);
}
// Construct using io.provenance.metadata.v1.p8e.Consideration.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getInputsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
considerationName_ = "";
if (inputsBuilder_ == null) {
inputs_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
inputsBuilder_.clear();
}
if (resultBuilder_ == null) {
result_ = null;
} else {
result_ = null;
resultBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.provenance.metadata.v1.p8e.P8E.internal_static_provenance_metadata_v1_p8e_Consideration_descriptor;
}
@java.lang.Override
public io.provenance.metadata.v1.p8e.Consideration getDefaultInstanceForType() {
return io.provenance.metadata.v1.p8e.Consideration.getDefaultInstance();
}
@java.lang.Override
public io.provenance.metadata.v1.p8e.Consideration build() {
io.provenance.metadata.v1.p8e.Consideration result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.provenance.metadata.v1.p8e.Consideration buildPartial() {
io.provenance.metadata.v1.p8e.Consideration result = new io.provenance.metadata.v1.p8e.Consideration(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.considerationName_ = considerationName_;
if (inputsBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
inputs_ = java.util.Collections.unmodifiableList(inputs_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.inputs_ = inputs_;
} else {
result.inputs_ = inputsBuilder_.build();
}
if (resultBuilder_ == null) {
result.result_ = result_;
} else {
result.result_ = resultBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.provenance.metadata.v1.p8e.Consideration) {
return mergeFrom((io.provenance.metadata.v1.p8e.Consideration)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.provenance.metadata.v1.p8e.Consideration other) {
if (other == io.provenance.metadata.v1.p8e.Consideration.getDefaultInstance()) return this;
if (!other.getConsiderationName().isEmpty()) {
considerationName_ = other.considerationName_;
onChanged();
}
if (inputsBuilder_ == null) {
if (!other.inputs_.isEmpty()) {
if (inputs_.isEmpty()) {
inputs_ = other.inputs_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureInputsIsMutable();
inputs_.addAll(other.inputs_);
}
onChanged();
}
} else {
if (!other.inputs_.isEmpty()) {
if (inputsBuilder_.isEmpty()) {
inputsBuilder_.dispose();
inputsBuilder_ = null;
inputs_ = other.inputs_;
bitField0_ = (bitField0_ & ~0x00000002);
inputsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getInputsFieldBuilder() : null;
} else {
inputsBuilder_.addAllMessages(other.inputs_);
}
}
}
if (other.hasResult()) {
mergeResult(other.getResult());
}
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 {
io.provenance.metadata.v1.p8e.Consideration parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.provenance.metadata.v1.p8e.Consideration) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object considerationName_ = "";
/**
* string consideration_name = 1;
*/
public java.lang.String getConsiderationName() {
java.lang.Object ref = considerationName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
considerationName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string consideration_name = 1;
*/
public com.google.protobuf.ByteString
getConsiderationNameBytes() {
java.lang.Object ref = considerationName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
considerationName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string consideration_name = 1;
*/
public Builder setConsiderationName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
considerationName_ = value;
onChanged();
return this;
}
/**
* string consideration_name = 1;
*/
public Builder clearConsiderationName() {
considerationName_ = getDefaultInstance().getConsiderationName();
onChanged();
return this;
}
/**
* string consideration_name = 1;
*/
public Builder setConsiderationNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
considerationName_ = value;
onChanged();
return this;
}
private java.util.List inputs_ =
java.util.Collections.emptyList();
private void ensureInputsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
inputs_ = new java.util.ArrayList(inputs_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.provenance.metadata.v1.p8e.ProposedFact, io.provenance.metadata.v1.p8e.ProposedFact.Builder, io.provenance.metadata.v1.p8e.ProposedFactOrBuilder> inputsBuilder_;
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public java.util.List getInputsList() {
if (inputsBuilder_ == null) {
return java.util.Collections.unmodifiableList(inputs_);
} else {
return inputsBuilder_.getMessageList();
}
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public int getInputsCount() {
if (inputsBuilder_ == null) {
return inputs_.size();
} else {
return inputsBuilder_.getCount();
}
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public io.provenance.metadata.v1.p8e.ProposedFact getInputs(int index) {
if (inputsBuilder_ == null) {
return inputs_.get(index);
} else {
return inputsBuilder_.getMessage(index);
}
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder setInputs(
int index, io.provenance.metadata.v1.p8e.ProposedFact value) {
if (inputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureInputsIsMutable();
inputs_.set(index, value);
onChanged();
} else {
inputsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder setInputs(
int index, io.provenance.metadata.v1.p8e.ProposedFact.Builder builderForValue) {
if (inputsBuilder_ == null) {
ensureInputsIsMutable();
inputs_.set(index, builderForValue.build());
onChanged();
} else {
inputsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder addInputs(io.provenance.metadata.v1.p8e.ProposedFact value) {
if (inputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureInputsIsMutable();
inputs_.add(value);
onChanged();
} else {
inputsBuilder_.addMessage(value);
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder addInputs(
int index, io.provenance.metadata.v1.p8e.ProposedFact value) {
if (inputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureInputsIsMutable();
inputs_.add(index, value);
onChanged();
} else {
inputsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder addInputs(
io.provenance.metadata.v1.p8e.ProposedFact.Builder builderForValue) {
if (inputsBuilder_ == null) {
ensureInputsIsMutable();
inputs_.add(builderForValue.build());
onChanged();
} else {
inputsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder addInputs(
int index, io.provenance.metadata.v1.p8e.ProposedFact.Builder builderForValue) {
if (inputsBuilder_ == null) {
ensureInputsIsMutable();
inputs_.add(index, builderForValue.build());
onChanged();
} else {
inputsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder addAllInputs(
java.lang.Iterable extends io.provenance.metadata.v1.p8e.ProposedFact> values) {
if (inputsBuilder_ == null) {
ensureInputsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, inputs_);
onChanged();
} else {
inputsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder clearInputs() {
if (inputsBuilder_ == null) {
inputs_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
inputsBuilder_.clear();
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public Builder removeInputs(int index) {
if (inputsBuilder_ == null) {
ensureInputsIsMutable();
inputs_.remove(index);
onChanged();
} else {
inputsBuilder_.remove(index);
}
return this;
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public io.provenance.metadata.v1.p8e.ProposedFact.Builder getInputsBuilder(
int index) {
return getInputsFieldBuilder().getBuilder(index);
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public io.provenance.metadata.v1.p8e.ProposedFactOrBuilder getInputsOrBuilder(
int index) {
if (inputsBuilder_ == null) {
return inputs_.get(index); } else {
return inputsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public java.util.List extends io.provenance.metadata.v1.p8e.ProposedFactOrBuilder>
getInputsOrBuilderList() {
if (inputsBuilder_ != null) {
return inputsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(inputs_);
}
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public io.provenance.metadata.v1.p8e.ProposedFact.Builder addInputsBuilder() {
return getInputsFieldBuilder().addBuilder(
io.provenance.metadata.v1.p8e.ProposedFact.getDefaultInstance());
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public io.provenance.metadata.v1.p8e.ProposedFact.Builder addInputsBuilder(
int index) {
return getInputsFieldBuilder().addBuilder(
index, io.provenance.metadata.v1.p8e.ProposedFact.getDefaultInstance());
}
/**
*
* Data pushed to a consideration that will ultimately match the output_spec of the consideration
*
*
* repeated .provenance.metadata.v1.p8e.ProposedFact inputs = 2;
*/
public java.util.List
getInputsBuilderList() {
return getInputsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.provenance.metadata.v1.p8e.ProposedFact, io.provenance.metadata.v1.p8e.ProposedFact.Builder, io.provenance.metadata.v1.p8e.ProposedFactOrBuilder>
getInputsFieldBuilder() {
if (inputsBuilder_ == null) {
inputsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.provenance.metadata.v1.p8e.ProposedFact, io.provenance.metadata.v1.p8e.ProposedFact.Builder, io.provenance.metadata.v1.p8e.ProposedFactOrBuilder>(
inputs_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
inputs_ = null;
}
return inputsBuilder_;
}
private io.provenance.metadata.v1.p8e.ExecutionResult result_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
io.provenance.metadata.v1.p8e.ExecutionResult, io.provenance.metadata.v1.p8e.ExecutionResult.Builder, io.provenance.metadata.v1.p8e.ExecutionResultOrBuilder> resultBuilder_;
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public boolean hasResult() {
return resultBuilder_ != null || result_ != null;
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public io.provenance.metadata.v1.p8e.ExecutionResult getResult() {
if (resultBuilder_ == null) {
return result_ == null ? io.provenance.metadata.v1.p8e.ExecutionResult.getDefaultInstance() : result_;
} else {
return resultBuilder_.getMessage();
}
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public Builder setResult(io.provenance.metadata.v1.p8e.ExecutionResult value) {
if (resultBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
result_ = value;
onChanged();
} else {
resultBuilder_.setMessage(value);
}
return this;
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public Builder setResult(
io.provenance.metadata.v1.p8e.ExecutionResult.Builder builderForValue) {
if (resultBuilder_ == null) {
result_ = builderForValue.build();
onChanged();
} else {
resultBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public Builder mergeResult(io.provenance.metadata.v1.p8e.ExecutionResult value) {
if (resultBuilder_ == null) {
if (result_ != null) {
result_ =
io.provenance.metadata.v1.p8e.ExecutionResult.newBuilder(result_).mergeFrom(value).buildPartial();
} else {
result_ = value;
}
onChanged();
} else {
resultBuilder_.mergeFrom(value);
}
return this;
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public Builder clearResult() {
if (resultBuilder_ == null) {
result_ = null;
onChanged();
} else {
result_ = null;
resultBuilder_ = null;
}
return this;
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public io.provenance.metadata.v1.p8e.ExecutionResult.Builder getResultBuilder() {
onChanged();
return getResultFieldBuilder().getBuilder();
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
public io.provenance.metadata.v1.p8e.ExecutionResultOrBuilder getResultOrBuilder() {
if (resultBuilder_ != null) {
return resultBuilder_.getMessageOrBuilder();
} else {
return result_ == null ?
io.provenance.metadata.v1.p8e.ExecutionResult.getDefaultInstance() : result_;
}
}
/**
* .provenance.metadata.v1.p8e.ExecutionResult result = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.provenance.metadata.v1.p8e.ExecutionResult, io.provenance.metadata.v1.p8e.ExecutionResult.Builder, io.provenance.metadata.v1.p8e.ExecutionResultOrBuilder>
getResultFieldBuilder() {
if (resultBuilder_ == null) {
resultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.provenance.metadata.v1.p8e.ExecutionResult, io.provenance.metadata.v1.p8e.ExecutionResult.Builder, io.provenance.metadata.v1.p8e.ExecutionResultOrBuilder>(
getResult(),
getParentForChildren(),
isClean());
result_ = null;
}
return resultBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:provenance.metadata.v1.p8e.Consideration)
}
// @@protoc_insertion_point(class_scope:provenance.metadata.v1.p8e.Consideration)
private static final io.provenance.metadata.v1.p8e.Consideration DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.provenance.metadata.v1.p8e.Consideration();
}
public static io.provenance.metadata.v1.p8e.Consideration getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Consideration parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Consideration(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 io.provenance.metadata.v1.p8e.Consideration getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}