com.google.api.expr.v1alpha1.ErrorSet Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: google/api/expr/v1alpha1/eval.proto
// Protobuf Java Version: 4.28.1
package com.google.api.expr.v1alpha1;
/**
*
* A set of errors.
*
* The errors included depend on the context. See `ExprValue.error`.
*
*
* Protobuf type {@code google.api.expr.v1alpha1.ErrorSet}
*/
public final class ErrorSet extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:google.api.expr.v1alpha1.ErrorSet)
ErrorSetOrBuilder {
private static final long serialVersionUID = 0L;
static {
com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
/* major= */ 4,
/* minor= */ 28,
/* patch= */ 1,
/* suffix= */ "",
ErrorSet.class.getName());
}
// Use ErrorSet.newBuilder() to construct.
private ErrorSet(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private ErrorSet() {
errors_ = java.util.Collections.emptyList();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.api.expr.v1alpha1.EvalProto.internal_static_google_api_expr_v1alpha1_ErrorSet_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.api.expr.v1alpha1.EvalProto.internal_static_google_api_expr_v1alpha1_ErrorSet_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.api.expr.v1alpha1.ErrorSet.class, com.google.api.expr.v1alpha1.ErrorSet.Builder.class);
}
public static final int ERRORS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private java.util.List errors_;
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
@java.lang.Override
public java.util.List getErrorsList() {
return errors_;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
@java.lang.Override
public java.util.List extends com.google.rpc.StatusOrBuilder>
getErrorsOrBuilderList() {
return errors_;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
@java.lang.Override
public int getErrorsCount() {
return errors_.size();
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
@java.lang.Override
public com.google.rpc.Status getErrors(int index) {
return errors_.get(index);
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
@java.lang.Override
public com.google.rpc.StatusOrBuilder getErrorsOrBuilder(
int index) {
return errors_.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 < errors_.size(); i++) {
output.writeMessage(1, errors_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < errors_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, errors_.get(i));
}
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.google.api.expr.v1alpha1.ErrorSet)) {
return super.equals(obj);
}
com.google.api.expr.v1alpha1.ErrorSet other = (com.google.api.expr.v1alpha1.ErrorSet) obj;
if (!getErrorsList()
.equals(other.getErrorsList())) 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 (getErrorsCount() > 0) {
hash = (37 * hash) + ERRORS_FIELD_NUMBER;
hash = (53 * hash) + getErrorsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static com.google.api.expr.v1alpha1.ErrorSet parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.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.google.api.expr.v1alpha1.ErrorSet 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.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* A set of errors.
*
* The errors included depend on the context. See `ExprValue.error`.
*
*
* Protobuf type {@code google.api.expr.v1alpha1.ErrorSet}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:google.api.expr.v1alpha1.ErrorSet)
com.google.api.expr.v1alpha1.ErrorSetOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.api.expr.v1alpha1.EvalProto.internal_static_google_api_expr_v1alpha1_ErrorSet_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.api.expr.v1alpha1.EvalProto.internal_static_google_api_expr_v1alpha1_ErrorSet_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.api.expr.v1alpha1.ErrorSet.class, com.google.api.expr.v1alpha1.ErrorSet.Builder.class);
}
// Construct using com.google.api.expr.v1alpha1.ErrorSet.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (errorsBuilder_ == null) {
errors_ = java.util.Collections.emptyList();
} else {
errors_ = null;
errorsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.api.expr.v1alpha1.EvalProto.internal_static_google_api_expr_v1alpha1_ErrorSet_descriptor;
}
@java.lang.Override
public com.google.api.expr.v1alpha1.ErrorSet getDefaultInstanceForType() {
return com.google.api.expr.v1alpha1.ErrorSet.getDefaultInstance();
}
@java.lang.Override
public com.google.api.expr.v1alpha1.ErrorSet build() {
com.google.api.expr.v1alpha1.ErrorSet result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.api.expr.v1alpha1.ErrorSet buildPartial() {
com.google.api.expr.v1alpha1.ErrorSet result = new com.google.api.expr.v1alpha1.ErrorSet(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.google.api.expr.v1alpha1.ErrorSet result) {
if (errorsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
errors_ = java.util.Collections.unmodifiableList(errors_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.errors_ = errors_;
} else {
result.errors_ = errorsBuilder_.build();
}
}
private void buildPartial0(com.google.api.expr.v1alpha1.ErrorSet result) {
int from_bitField0_ = bitField0_;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.api.expr.v1alpha1.ErrorSet) {
return mergeFrom((com.google.api.expr.v1alpha1.ErrorSet)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.api.expr.v1alpha1.ErrorSet other) {
if (other == com.google.api.expr.v1alpha1.ErrorSet.getDefaultInstance()) return this;
if (errorsBuilder_ == null) {
if (!other.errors_.isEmpty()) {
if (errors_.isEmpty()) {
errors_ = other.errors_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureErrorsIsMutable();
errors_.addAll(other.errors_);
}
onChanged();
}
} else {
if (!other.errors_.isEmpty()) {
if (errorsBuilder_.isEmpty()) {
errorsBuilder_.dispose();
errorsBuilder_ = null;
errors_ = other.errors_;
bitField0_ = (bitField0_ & ~0x00000001);
errorsBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getErrorsFieldBuilder() : null;
} else {
errorsBuilder_.addAllMessages(other.errors_);
}
}
}
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: {
com.google.rpc.Status m =
input.readMessage(
com.google.rpc.Status.parser(),
extensionRegistry);
if (errorsBuilder_ == null) {
ensureErrorsIsMutable();
errors_.add(m);
} else {
errorsBuilder_.addMessage(m);
}
break;
} // case 10
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 java.util.List errors_ =
java.util.Collections.emptyList();
private void ensureErrorsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
errors_ = new java.util.ArrayList(errors_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> errorsBuilder_;
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public java.util.List getErrorsList() {
if (errorsBuilder_ == null) {
return java.util.Collections.unmodifiableList(errors_);
} else {
return errorsBuilder_.getMessageList();
}
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public int getErrorsCount() {
if (errorsBuilder_ == null) {
return errors_.size();
} else {
return errorsBuilder_.getCount();
}
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public com.google.rpc.Status getErrors(int index) {
if (errorsBuilder_ == null) {
return errors_.get(index);
} else {
return errorsBuilder_.getMessage(index);
}
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder setErrors(
int index, com.google.rpc.Status value) {
if (errorsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureErrorsIsMutable();
errors_.set(index, value);
onChanged();
} else {
errorsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder setErrors(
int index, com.google.rpc.Status.Builder builderForValue) {
if (errorsBuilder_ == null) {
ensureErrorsIsMutable();
errors_.set(index, builderForValue.build());
onChanged();
} else {
errorsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder addErrors(com.google.rpc.Status value) {
if (errorsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureErrorsIsMutable();
errors_.add(value);
onChanged();
} else {
errorsBuilder_.addMessage(value);
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder addErrors(
int index, com.google.rpc.Status value) {
if (errorsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureErrorsIsMutable();
errors_.add(index, value);
onChanged();
} else {
errorsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder addErrors(
com.google.rpc.Status.Builder builderForValue) {
if (errorsBuilder_ == null) {
ensureErrorsIsMutable();
errors_.add(builderForValue.build());
onChanged();
} else {
errorsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder addErrors(
int index, com.google.rpc.Status.Builder builderForValue) {
if (errorsBuilder_ == null) {
ensureErrorsIsMutable();
errors_.add(index, builderForValue.build());
onChanged();
} else {
errorsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder addAllErrors(
java.lang.Iterable extends com.google.rpc.Status> values) {
if (errorsBuilder_ == null) {
ensureErrorsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, errors_);
onChanged();
} else {
errorsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder clearErrors() {
if (errorsBuilder_ == null) {
errors_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
errorsBuilder_.clear();
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public Builder removeErrors(int index) {
if (errorsBuilder_ == null) {
ensureErrorsIsMutable();
errors_.remove(index);
onChanged();
} else {
errorsBuilder_.remove(index);
}
return this;
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public com.google.rpc.Status.Builder getErrorsBuilder(
int index) {
return getErrorsFieldBuilder().getBuilder(index);
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public com.google.rpc.StatusOrBuilder getErrorsOrBuilder(
int index) {
if (errorsBuilder_ == null) {
return errors_.get(index); } else {
return errorsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public java.util.List extends com.google.rpc.StatusOrBuilder>
getErrorsOrBuilderList() {
if (errorsBuilder_ != null) {
return errorsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(errors_);
}
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public com.google.rpc.Status.Builder addErrorsBuilder() {
return getErrorsFieldBuilder().addBuilder(
com.google.rpc.Status.getDefaultInstance());
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public com.google.rpc.Status.Builder addErrorsBuilder(
int index) {
return getErrorsFieldBuilder().addBuilder(
index, com.google.rpc.Status.getDefaultInstance());
}
/**
*
* The errors in the set.
*
*
* repeated .google.rpc.Status errors = 1;
*/
public java.util.List
getErrorsBuilderList() {
return getErrorsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>
getErrorsFieldBuilder() {
if (errorsBuilder_ == null) {
errorsBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>(
errors_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
errors_ = null;
}
return errorsBuilder_;
}
// @@protoc_insertion_point(builder_scope:google.api.expr.v1alpha1.ErrorSet)
}
// @@protoc_insertion_point(class_scope:google.api.expr.v1alpha1.ErrorSet)
private static final com.google.api.expr.v1alpha1.ErrorSet DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.api.expr.v1alpha1.ErrorSet();
}
public static com.google.api.expr.v1alpha1.ErrorSet getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ErrorSet 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.google.api.expr.v1alpha1.ErrorSet getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}