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

com.google.maps.places.v1.SearchNearbyResponse Maven / Gradle / Ivy

There is a newer version: 0.22.0
Show newest version
/*
 * Copyright 2023 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/maps/places/v1/places_service.proto

package com.google.maps.places.v1;

/**
 *
 *
 * 
 * Response proto for Search Nearby.
 * 
* * Protobuf type {@code google.maps.places.v1.SearchNearbyResponse} */ public final class SearchNearbyResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.maps.places.v1.SearchNearbyResponse) SearchNearbyResponseOrBuilder { private static final long serialVersionUID = 0L; // Use SearchNearbyResponse.newBuilder() to construct. private SearchNearbyResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private SearchNearbyResponse() { places_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new SearchNearbyResponse(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.maps.places.v1.PlacesServiceProto .internal_static_google_maps_places_v1_SearchNearbyResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.maps.places.v1.PlacesServiceProto .internal_static_google_maps_places_v1_SearchNearbyResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.maps.places.v1.SearchNearbyResponse.class, com.google.maps.places.v1.SearchNearbyResponse.Builder.class); } public static final int PLACES_FIELD_NUMBER = 1; @SuppressWarnings("serial") private java.util.List places_; /** * * *
   * A list of interesting places that meets user's requirements like places
   * types, number of places and specific location restriction.
   * 
* * repeated .google.maps.places.v1.Place places = 1; */ @java.lang.Override public java.util.List getPlacesList() { return places_; } /** * * *
   * A list of interesting places that meets user's requirements like places
   * types, number of places and specific location restriction.
   * 
* * repeated .google.maps.places.v1.Place places = 1; */ @java.lang.Override public java.util.List getPlacesOrBuilderList() { return places_; } /** * * *
   * A list of interesting places that meets user's requirements like places
   * types, number of places and specific location restriction.
   * 
* * repeated .google.maps.places.v1.Place places = 1; */ @java.lang.Override public int getPlacesCount() { return places_.size(); } /** * * *
   * A list of interesting places that meets user's requirements like places
   * types, number of places and specific location restriction.
   * 
* * repeated .google.maps.places.v1.Place places = 1; */ @java.lang.Override public com.google.maps.places.v1.Place getPlaces(int index) { return places_.get(index); } /** * * *
   * A list of interesting places that meets user's requirements like places
   * types, number of places and specific location restriction.
   * 
* * repeated .google.maps.places.v1.Place places = 1; */ @java.lang.Override public com.google.maps.places.v1.PlaceOrBuilder getPlacesOrBuilder(int index) { return places_.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 < places_.size(); i++) { output.writeMessage(1, places_.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 < places_.size(); i++) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, places_.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.maps.places.v1.SearchNearbyResponse)) { return super.equals(obj); } com.google.maps.places.v1.SearchNearbyResponse other = (com.google.maps.places.v1.SearchNearbyResponse) obj; if (!getPlacesList().equals(other.getPlacesList())) 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 (getPlacesCount() > 0) { hash = (37 * hash) + PLACES_FIELD_NUMBER; hash = (53 * hash) + getPlacesList().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.maps.places.v1.SearchNearbyResponse parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.maps.places.v1.SearchNearbyResponse parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.maps.places.v1.SearchNearbyResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.maps.places.v1.SearchNearbyResponse 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.maps.places.v1.SearchNearbyResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.maps.places.v1.SearchNearbyResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.maps.places.v1.SearchNearbyResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.maps.places.v1.SearchNearbyResponse 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.google.maps.places.v1.SearchNearbyResponse parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.maps.places.v1.SearchNearbyResponse 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.google.maps.places.v1.SearchNearbyResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.maps.places.v1.SearchNearbyResponse 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.google.maps.places.v1.SearchNearbyResponse 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; } /** * * *
   * Response proto for Search Nearby.
   * 
* * Protobuf type {@code google.maps.places.v1.SearchNearbyResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.maps.places.v1.SearchNearbyResponse) com.google.maps.places.v1.SearchNearbyResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.maps.places.v1.PlacesServiceProto .internal_static_google_maps_places_v1_SearchNearbyResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.maps.places.v1.PlacesServiceProto .internal_static_google_maps_places_v1_SearchNearbyResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.maps.places.v1.SearchNearbyResponse.class, com.google.maps.places.v1.SearchNearbyResponse.Builder.class); } // Construct using com.google.maps.places.v1.SearchNearbyResponse.newBuilder() private Builder() {} private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; if (placesBuilder_ == null) { places_ = java.util.Collections.emptyList(); } else { places_ = null; placesBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000001); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.maps.places.v1.PlacesServiceProto .internal_static_google_maps_places_v1_SearchNearbyResponse_descriptor; } @java.lang.Override public com.google.maps.places.v1.SearchNearbyResponse getDefaultInstanceForType() { return com.google.maps.places.v1.SearchNearbyResponse.getDefaultInstance(); } @java.lang.Override public com.google.maps.places.v1.SearchNearbyResponse build() { com.google.maps.places.v1.SearchNearbyResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.maps.places.v1.SearchNearbyResponse buildPartial() { com.google.maps.places.v1.SearchNearbyResponse result = new com.google.maps.places.v1.SearchNearbyResponse(this); buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartialRepeatedFields(com.google.maps.places.v1.SearchNearbyResponse result) { if (placesBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { places_ = java.util.Collections.unmodifiableList(places_); bitField0_ = (bitField0_ & ~0x00000001); } result.places_ = places_; } else { result.places_ = placesBuilder_.build(); } } private void buildPartial0(com.google.maps.places.v1.SearchNearbyResponse result) { int from_bitField0_ = bitField0_; } @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.google.maps.places.v1.SearchNearbyResponse) { return mergeFrom((com.google.maps.places.v1.SearchNearbyResponse) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.maps.places.v1.SearchNearbyResponse other) { if (other == com.google.maps.places.v1.SearchNearbyResponse.getDefaultInstance()) return this; if (placesBuilder_ == null) { if (!other.places_.isEmpty()) { if (places_.isEmpty()) { places_ = other.places_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensurePlacesIsMutable(); places_.addAll(other.places_); } onChanged(); } } else { if (!other.places_.isEmpty()) { if (placesBuilder_.isEmpty()) { placesBuilder_.dispose(); placesBuilder_ = null; places_ = other.places_; bitField0_ = (bitField0_ & ~0x00000001); placesBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getPlacesFieldBuilder() : null; } else { placesBuilder_.addAllMessages(other.places_); } } } 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.maps.places.v1.Place m = input.readMessage(com.google.maps.places.v1.Place.parser(), extensionRegistry); if (placesBuilder_ == null) { ensurePlacesIsMutable(); places_.add(m); } else { placesBuilder_.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 places_ = java.util.Collections.emptyList(); private void ensurePlacesIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { places_ = new java.util.ArrayList(places_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.maps.places.v1.Place, com.google.maps.places.v1.Place.Builder, com.google.maps.places.v1.PlaceOrBuilder> placesBuilder_; /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public java.util.List getPlacesList() { if (placesBuilder_ == null) { return java.util.Collections.unmodifiableList(places_); } else { return placesBuilder_.getMessageList(); } } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public int getPlacesCount() { if (placesBuilder_ == null) { return places_.size(); } else { return placesBuilder_.getCount(); } } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public com.google.maps.places.v1.Place getPlaces(int index) { if (placesBuilder_ == null) { return places_.get(index); } else { return placesBuilder_.getMessage(index); } } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder setPlaces(int index, com.google.maps.places.v1.Place value) { if (placesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePlacesIsMutable(); places_.set(index, value); onChanged(); } else { placesBuilder_.setMessage(index, value); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder setPlaces(int index, com.google.maps.places.v1.Place.Builder builderForValue) { if (placesBuilder_ == null) { ensurePlacesIsMutable(); places_.set(index, builderForValue.build()); onChanged(); } else { placesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder addPlaces(com.google.maps.places.v1.Place value) { if (placesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePlacesIsMutable(); places_.add(value); onChanged(); } else { placesBuilder_.addMessage(value); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder addPlaces(int index, com.google.maps.places.v1.Place value) { if (placesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePlacesIsMutable(); places_.add(index, value); onChanged(); } else { placesBuilder_.addMessage(index, value); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder addPlaces(com.google.maps.places.v1.Place.Builder builderForValue) { if (placesBuilder_ == null) { ensurePlacesIsMutable(); places_.add(builderForValue.build()); onChanged(); } else { placesBuilder_.addMessage(builderForValue.build()); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder addPlaces(int index, com.google.maps.places.v1.Place.Builder builderForValue) { if (placesBuilder_ == null) { ensurePlacesIsMutable(); places_.add(index, builderForValue.build()); onChanged(); } else { placesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder addAllPlaces( java.lang.Iterable values) { if (placesBuilder_ == null) { ensurePlacesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll(values, places_); onChanged(); } else { placesBuilder_.addAllMessages(values); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder clearPlaces() { if (placesBuilder_ == null) { places_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { placesBuilder_.clear(); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public Builder removePlaces(int index) { if (placesBuilder_ == null) { ensurePlacesIsMutable(); places_.remove(index); onChanged(); } else { placesBuilder_.remove(index); } return this; } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public com.google.maps.places.v1.Place.Builder getPlacesBuilder(int index) { return getPlacesFieldBuilder().getBuilder(index); } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public com.google.maps.places.v1.PlaceOrBuilder getPlacesOrBuilder(int index) { if (placesBuilder_ == null) { return places_.get(index); } else { return placesBuilder_.getMessageOrBuilder(index); } } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public java.util.List getPlacesOrBuilderList() { if (placesBuilder_ != null) { return placesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(places_); } } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public com.google.maps.places.v1.Place.Builder addPlacesBuilder() { return getPlacesFieldBuilder() .addBuilder(com.google.maps.places.v1.Place.getDefaultInstance()); } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public com.google.maps.places.v1.Place.Builder addPlacesBuilder(int index) { return getPlacesFieldBuilder() .addBuilder(index, com.google.maps.places.v1.Place.getDefaultInstance()); } /** * * *
     * A list of interesting places that meets user's requirements like places
     * types, number of places and specific location restriction.
     * 
* * repeated .google.maps.places.v1.Place places = 1; */ public java.util.List getPlacesBuilderList() { return getPlacesFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.maps.places.v1.Place, com.google.maps.places.v1.Place.Builder, com.google.maps.places.v1.PlaceOrBuilder> getPlacesFieldBuilder() { if (placesBuilder_ == null) { placesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.maps.places.v1.Place, com.google.maps.places.v1.Place.Builder, com.google.maps.places.v1.PlaceOrBuilder>( places_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); places_ = null; } return placesBuilder_; } @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:google.maps.places.v1.SearchNearbyResponse) } // @@protoc_insertion_point(class_scope:google.maps.places.v1.SearchNearbyResponse) private static final com.google.maps.places.v1.SearchNearbyResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.maps.places.v1.SearchNearbyResponse(); } public static com.google.maps.places.v1.SearchNearbyResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public SearchNearbyResponse 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.maps.places.v1.SearchNearbyResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy