All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.CustomError Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/api/error.proto

package com.google.api;

/**
 * Protobuf type {@code google.api.CustomError}
 *
 * 
 * Customize service error responses.  For example, list any service
 * specific protobuf types that can appear in error detail lists of
 * error responses.
 * Example:
 *     custom_error:
 *       types:
 *       - google.foo.v1.CustomError
 *       - google.foo.v1.AnotherError
 * (-- For internal Google service producers, instead of listing such
 * custom error detail types in the YAML configuration file; Stubby
 * annotation can be used.  Please, see //google/api/annotations.proto
 * for more details. --)
 * 
*/ public final class CustomError extends com.google.protobuf.GeneratedMessage implements // @@protoc_insertion_point(message_implements:google.api.CustomError) CustomErrorOrBuilder { // Use CustomError.newBuilder() to construct. private CustomError(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); } private CustomError() { rules_ = java.util.Collections.emptyList(); types_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } private CustomError( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) { this(); int mutable_bitField0_ = 0; try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; default: { if (!input.skipField(tag)) { done = true; } break; } case 10: { if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { rules_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } rules_.add(input.readMessage(com.google.api.CustomErrorRule.parser(), extensionRegistry)); break; } case 18: { String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) { types_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000002; } types_.add(s); break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw new RuntimeException(e.setUnfinishedMessage(this)); } catch (java.io.IOException e) { throw new RuntimeException( new com.google.protobuf.InvalidProtocolBufferException( e.getMessage()).setUnfinishedMessage(this)); } finally { if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { rules_ = java.util.Collections.unmodifiableList(rules_); } if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) { types_ = types_.getUnmodifiableView(); } makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.api.ErrorFormatProto.internal_static_google_api_CustomError_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.api.ErrorFormatProto.internal_static_google_api_CustomError_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.api.CustomError.class, com.google.api.CustomError.Builder.class); } public static final int RULES_FIELD_NUMBER = 1; private java.util.List rules_; /** * repeated .google.api.CustomErrorRule rules = 1; * *
   * The list of custom error rules to select to which messages this should
   * apply.
   * 
*/ public java.util.List getRulesList() { return rules_; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
   * The list of custom error rules to select to which messages this should
   * apply.
   * 
*/ public java.util.List getRulesOrBuilderList() { return rules_; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
   * The list of custom error rules to select to which messages this should
   * apply.
   * 
*/ public int getRulesCount() { return rules_.size(); } /** * repeated .google.api.CustomErrorRule rules = 1; * *
   * The list of custom error rules to select to which messages this should
   * apply.
   * 
*/ public com.google.api.CustomErrorRule getRules(int index) { return rules_.get(index); } /** * repeated .google.api.CustomErrorRule rules = 1; * *
   * The list of custom error rules to select to which messages this should
   * apply.
   * 
*/ public com.google.api.CustomErrorRuleOrBuilder getRulesOrBuilder( int index) { return rules_.get(index); } public static final int TYPES_FIELD_NUMBER = 2; private com.google.protobuf.LazyStringList types_; /** * repeated string types = 2; * *
   * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
   * 
*/ public com.google.protobuf.ProtocolStringList getTypesList() { return types_; } /** * repeated string types = 2; * *
   * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
   * 
*/ public int getTypesCount() { return types_.size(); } /** * repeated string types = 2; * *
   * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
   * 
*/ public java.lang.String getTypes(int index) { return types_.get(index); } /** * repeated string types = 2; * *
   * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
   * 
*/ public com.google.protobuf.ByteString getTypesBytes(int index) { return types_.getByteString(index); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { for (int i = 0; i < rules_.size(); i++) { output.writeMessage(1, rules_.get(i)); } for (int i = 0; i < types_.size(); i++) { com.google.protobuf.GeneratedMessage.writeString(output, 2, types_.getRaw(i)); } } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < rules_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, rules_.get(i)); } { int dataSize = 0; for (int i = 0; i < types_.size(); i++) { dataSize += computeStringSizeNoTag(types_.getRaw(i)); } size += dataSize; size += 1 * getTypesList().size(); } memoizedSize = size; return size; } private static final long serialVersionUID = 0L; public static com.google.api.CustomError parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.CustomError 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.CustomError parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.CustomError parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.api.CustomError parseFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } public static com.google.api.CustomError parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseFrom(input, extensionRegistry); } public static com.google.api.CustomError parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseDelimitedFrom(input); } public static com.google.api.CustomError parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseDelimitedFrom(input, extensionRegistry); } public static com.google.api.CustomError parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } public static com.google.api.CustomError parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseFrom(input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.api.CustomError prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } 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; } /** * Protobuf type {@code google.api.CustomError} * *
   * Customize service error responses.  For example, list any service
   * specific protobuf types that can appear in error detail lists of
   * error responses.
   * Example:
   *     custom_error:
   *       types:
   *       - google.foo.v1.CustomError
   *       - google.foo.v1.AnotherError
   * (-- For internal Google service producers, instead of listing such
   * custom error detail types in the YAML configuration file; Stubby
   * annotation can be used.  Please, see //google/api/annotations.proto
   * for more details. --)
   * 
*/ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements // @@protoc_insertion_point(builder_implements:google.api.CustomError) com.google.api.CustomErrorOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.api.ErrorFormatProto.internal_static_google_api_CustomError_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.api.ErrorFormatProto.internal_static_google_api_CustomError_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.api.CustomError.class, com.google.api.CustomError.Builder.class); } // Construct using com.google.api.CustomError.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessage.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { getRulesFieldBuilder(); } } public Builder clear() { super.clear(); if (rulesBuilder_ == null) { rules_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { rulesBuilder_.clear(); } types_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000002); return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.api.ErrorFormatProto.internal_static_google_api_CustomError_descriptor; } public com.google.api.CustomError getDefaultInstanceForType() { return com.google.api.CustomError.getDefaultInstance(); } public com.google.api.CustomError build() { com.google.api.CustomError result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public com.google.api.CustomError buildPartial() { com.google.api.CustomError result = new com.google.api.CustomError(this); int from_bitField0_ = bitField0_; if (rulesBuilder_ == null) { if (((bitField0_ & 0x00000001) == 0x00000001)) { rules_ = java.util.Collections.unmodifiableList(rules_); bitField0_ = (bitField0_ & ~0x00000001); } result.rules_ = rules_; } else { result.rules_ = rulesBuilder_.build(); } if (((bitField0_ & 0x00000002) == 0x00000002)) { types_ = types_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000002); } result.types_ = types_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.api.CustomError) { return mergeFrom((com.google.api.CustomError)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.api.CustomError other) { if (other == com.google.api.CustomError.getDefaultInstance()) return this; if (rulesBuilder_ == null) { if (!other.rules_.isEmpty()) { if (rules_.isEmpty()) { rules_ = other.rules_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureRulesIsMutable(); rules_.addAll(other.rules_); } onChanged(); } } else { if (!other.rules_.isEmpty()) { if (rulesBuilder_.isEmpty()) { rulesBuilder_.dispose(); rulesBuilder_ = null; rules_ = other.rules_; bitField0_ = (bitField0_ & ~0x00000001); rulesBuilder_ = com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? getRulesFieldBuilder() : null; } else { rulesBuilder_.addAllMessages(other.rules_); } } } if (!other.types_.isEmpty()) { if (types_.isEmpty()) { types_ = other.types_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureTypesIsMutable(); types_.addAll(other.types_); } onChanged(); } onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.api.CustomError parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.api.CustomError) e.getUnfinishedMessage(); throw e; } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.util.List rules_ = java.util.Collections.emptyList(); private void ensureRulesIsMutable() { if (!((bitField0_ & 0x00000001) == 0x00000001)) { rules_ = new java.util.ArrayList(rules_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilder< com.google.api.CustomErrorRule, com.google.api.CustomErrorRule.Builder, com.google.api.CustomErrorRuleOrBuilder> rulesBuilder_; /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public java.util.List getRulesList() { if (rulesBuilder_ == null) { return java.util.Collections.unmodifiableList(rules_); } else { return rulesBuilder_.getMessageList(); } } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public int getRulesCount() { if (rulesBuilder_ == null) { return rules_.size(); } else { return rulesBuilder_.getCount(); } } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public com.google.api.CustomErrorRule getRules(int index) { if (rulesBuilder_ == null) { return rules_.get(index); } else { return rulesBuilder_.getMessage(index); } } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder setRules( int index, com.google.api.CustomErrorRule value) { if (rulesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureRulesIsMutable(); rules_.set(index, value); onChanged(); } else { rulesBuilder_.setMessage(index, value); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder setRules( int index, com.google.api.CustomErrorRule.Builder builderForValue) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); rules_.set(index, builderForValue.build()); onChanged(); } else { rulesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder addRules(com.google.api.CustomErrorRule value) { if (rulesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureRulesIsMutable(); rules_.add(value); onChanged(); } else { rulesBuilder_.addMessage(value); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder addRules( int index, com.google.api.CustomErrorRule value) { if (rulesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureRulesIsMutable(); rules_.add(index, value); onChanged(); } else { rulesBuilder_.addMessage(index, value); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder addRules( com.google.api.CustomErrorRule.Builder builderForValue) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); rules_.add(builderForValue.build()); onChanged(); } else { rulesBuilder_.addMessage(builderForValue.build()); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder addRules( int index, com.google.api.CustomErrorRule.Builder builderForValue) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); rules_.add(index, builderForValue.build()); onChanged(); } else { rulesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder addAllRules( java.lang.Iterable values) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, rules_); onChanged(); } else { rulesBuilder_.addAllMessages(values); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder clearRules() { if (rulesBuilder_ == null) { rules_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { rulesBuilder_.clear(); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public Builder removeRules(int index) { if (rulesBuilder_ == null) { ensureRulesIsMutable(); rules_.remove(index); onChanged(); } else { rulesBuilder_.remove(index); } return this; } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public com.google.api.CustomErrorRule.Builder getRulesBuilder( int index) { return getRulesFieldBuilder().getBuilder(index); } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public com.google.api.CustomErrorRuleOrBuilder getRulesOrBuilder( int index) { if (rulesBuilder_ == null) { return rules_.get(index); } else { return rulesBuilder_.getMessageOrBuilder(index); } } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public java.util.List getRulesOrBuilderList() { if (rulesBuilder_ != null) { return rulesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(rules_); } } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public com.google.api.CustomErrorRule.Builder addRulesBuilder() { return getRulesFieldBuilder().addBuilder( com.google.api.CustomErrorRule.getDefaultInstance()); } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public com.google.api.CustomErrorRule.Builder addRulesBuilder( int index) { return getRulesFieldBuilder().addBuilder( index, com.google.api.CustomErrorRule.getDefaultInstance()); } /** * repeated .google.api.CustomErrorRule rules = 1; * *
     * The list of custom error rules to select to which messages this should
     * apply.
     * 
*/ public java.util.List getRulesBuilderList() { return getRulesFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilder< com.google.api.CustomErrorRule, com.google.api.CustomErrorRule.Builder, com.google.api.CustomErrorRuleOrBuilder> getRulesFieldBuilder() { if (rulesBuilder_ == null) { rulesBuilder_ = new com.google.protobuf.RepeatedFieldBuilder< com.google.api.CustomErrorRule, com.google.api.CustomErrorRule.Builder, com.google.api.CustomErrorRuleOrBuilder>( rules_, ((bitField0_ & 0x00000001) == 0x00000001), getParentForChildren(), isClean()); rules_ = null; } return rulesBuilder_; } private com.google.protobuf.LazyStringList types_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureTypesIsMutable() { if (!((bitField0_ & 0x00000002) == 0x00000002)) { types_ = new com.google.protobuf.LazyStringArrayList(types_); bitField0_ |= 0x00000002; } } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public com.google.protobuf.ProtocolStringList getTypesList() { return types_.getUnmodifiableView(); } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public int getTypesCount() { return types_.size(); } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public java.lang.String getTypes(int index) { return types_.get(index); } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public com.google.protobuf.ByteString getTypesBytes(int index) { return types_.getByteString(index); } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public Builder setTypes( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureTypesIsMutable(); types_.set(index, value); onChanged(); return this; } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public Builder addTypes( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureTypesIsMutable(); types_.add(value); onChanged(); return this; } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public Builder addAllTypes( java.lang.Iterable values) { ensureTypesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, types_); onChanged(); return this; } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public Builder clearTypes() { types_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * repeated string types = 2; * *
     * The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
     * 
*/ public Builder addTypesBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureTypesIsMutable(); types_.add(value); onChanged(); return this; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return this; } public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return this; } // @@protoc_insertion_point(builder_scope:google.api.CustomError) } // @@protoc_insertion_point(class_scope:google.api.CustomError) private static final com.google.api.CustomError DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.api.CustomError(); } public static com.google.api.CustomError getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public CustomError parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { try { return new CustomError(input, extensionRegistry); } catch (RuntimeException e) { if (e.getCause() instanceof com.google.protobuf.InvalidProtocolBufferException) { throw (com.google.protobuf.InvalidProtocolBufferException) e.getCause(); } throw e; } } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } public com.google.api.CustomError getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy