com.yelp.nrtsearch.server.grpc.Polygon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clientlib Show documentation
Show all versions of clientlib Show documentation
GRPC Clientlib for nrtSearch
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: yelp/nrtsearch/search.proto
// Protobuf Java Version: 3.25.3
package com.yelp.nrtsearch.server.grpc;
/**
*
* Polygon defined by a list of geo points
*
*
* Protobuf type {@code luceneserver.Polygon}
*/
public final class Polygon extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:luceneserver.Polygon)
PolygonOrBuilder {
private static final long serialVersionUID = 0L;
// Use Polygon.newBuilder() to construct.
private Polygon(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Polygon() {
points_ = java.util.Collections.emptyList();
holes_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new Polygon();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_Polygon_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_Polygon_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.yelp.nrtsearch.server.grpc.Polygon.class, com.yelp.nrtsearch.server.grpc.Polygon.Builder.class);
}
public static final int POINTS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private java.util.List points_;
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
@java.lang.Override
public java.util.List getPointsList() {
return points_;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
@java.lang.Override
public java.util.List extends com.google.type.LatLngOrBuilder>
getPointsOrBuilderList() {
return points_;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
@java.lang.Override
public int getPointsCount() {
return points_.size();
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
@java.lang.Override
public com.google.type.LatLng getPoints(int index) {
return points_.get(index);
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
@java.lang.Override
public com.google.type.LatLngOrBuilder getPointsOrBuilder(
int index) {
return points_.get(index);
}
public static final int HOLES_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private java.util.List holes_;
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
@java.lang.Override
public java.util.List getHolesList() {
return holes_;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
@java.lang.Override
public java.util.List extends com.yelp.nrtsearch.server.grpc.PolygonOrBuilder>
getHolesOrBuilderList() {
return holes_;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
@java.lang.Override
public int getHolesCount() {
return holes_.size();
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.Polygon getHoles(int index) {
return holes_.get(index);
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.PolygonOrBuilder getHolesOrBuilder(
int index) {
return holes_.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 < points_.size(); i++) {
output.writeMessage(1, points_.get(i));
}
for (int i = 0; i < holes_.size(); i++) {
output.writeMessage(2, holes_.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 < points_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, points_.get(i));
}
for (int i = 0; i < holes_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, holes_.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.yelp.nrtsearch.server.grpc.Polygon)) {
return super.equals(obj);
}
com.yelp.nrtsearch.server.grpc.Polygon other = (com.yelp.nrtsearch.server.grpc.Polygon) obj;
if (!getPointsList()
.equals(other.getPointsList())) return false;
if (!getHolesList()
.equals(other.getHolesList())) 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 (getPointsCount() > 0) {
hash = (37 * hash) + POINTS_FIELD_NUMBER;
hash = (53 * hash) + getPointsList().hashCode();
}
if (getHolesCount() > 0) {
hash = (37 * hash) + HOLES_FIELD_NUMBER;
hash = (53 * hash) + getHolesList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.yelp.nrtsearch.server.grpc.Polygon parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.yelp.nrtsearch.server.grpc.Polygon parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.yelp.nrtsearch.server.grpc.Polygon parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.yelp.nrtsearch.server.grpc.Polygon parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.yelp.nrtsearch.server.grpc.Polygon parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.yelp.nrtsearch.server.grpc.Polygon parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.yelp.nrtsearch.server.grpc.Polygon parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.yelp.nrtsearch.server.grpc.Polygon 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.yelp.nrtsearch.server.grpc.Polygon parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.yelp.nrtsearch.server.grpc.Polygon 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.yelp.nrtsearch.server.grpc.Polygon parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.yelp.nrtsearch.server.grpc.Polygon 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.yelp.nrtsearch.server.grpc.Polygon 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;
}
/**
*
* Polygon defined by a list of geo points
*
*
* Protobuf type {@code luceneserver.Polygon}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:luceneserver.Polygon)
com.yelp.nrtsearch.server.grpc.PolygonOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_Polygon_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_Polygon_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.yelp.nrtsearch.server.grpc.Polygon.class, com.yelp.nrtsearch.server.grpc.Polygon.Builder.class);
}
// Construct using com.yelp.nrtsearch.server.grpc.Polygon.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (pointsBuilder_ == null) {
points_ = java.util.Collections.emptyList();
} else {
points_ = null;
pointsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (holesBuilder_ == null) {
holes_ = java.util.Collections.emptyList();
} else {
holes_ = null;
holesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_Polygon_descriptor;
}
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.Polygon getDefaultInstanceForType() {
return com.yelp.nrtsearch.server.grpc.Polygon.getDefaultInstance();
}
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.Polygon build() {
com.yelp.nrtsearch.server.grpc.Polygon result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.Polygon buildPartial() {
com.yelp.nrtsearch.server.grpc.Polygon result = new com.yelp.nrtsearch.server.grpc.Polygon(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.yelp.nrtsearch.server.grpc.Polygon result) {
if (pointsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
points_ = java.util.Collections.unmodifiableList(points_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.points_ = points_;
} else {
result.points_ = pointsBuilder_.build();
}
if (holesBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
holes_ = java.util.Collections.unmodifiableList(holes_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.holes_ = holes_;
} else {
result.holes_ = holesBuilder_.build();
}
}
private void buildPartial0(com.yelp.nrtsearch.server.grpc.Polygon 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.yelp.nrtsearch.server.grpc.Polygon) {
return mergeFrom((com.yelp.nrtsearch.server.grpc.Polygon)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.yelp.nrtsearch.server.grpc.Polygon other) {
if (other == com.yelp.nrtsearch.server.grpc.Polygon.getDefaultInstance()) return this;
if (pointsBuilder_ == null) {
if (!other.points_.isEmpty()) {
if (points_.isEmpty()) {
points_ = other.points_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensurePointsIsMutable();
points_.addAll(other.points_);
}
onChanged();
}
} else {
if (!other.points_.isEmpty()) {
if (pointsBuilder_.isEmpty()) {
pointsBuilder_.dispose();
pointsBuilder_ = null;
points_ = other.points_;
bitField0_ = (bitField0_ & ~0x00000001);
pointsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getPointsFieldBuilder() : null;
} else {
pointsBuilder_.addAllMessages(other.points_);
}
}
}
if (holesBuilder_ == null) {
if (!other.holes_.isEmpty()) {
if (holes_.isEmpty()) {
holes_ = other.holes_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureHolesIsMutable();
holes_.addAll(other.holes_);
}
onChanged();
}
} else {
if (!other.holes_.isEmpty()) {
if (holesBuilder_.isEmpty()) {
holesBuilder_.dispose();
holesBuilder_ = null;
holes_ = other.holes_;
bitField0_ = (bitField0_ & ~0x00000002);
holesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getHolesFieldBuilder() : null;
} else {
holesBuilder_.addAllMessages(other.holes_);
}
}
}
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.type.LatLng m =
input.readMessage(
com.google.type.LatLng.parser(),
extensionRegistry);
if (pointsBuilder_ == null) {
ensurePointsIsMutable();
points_.add(m);
} else {
pointsBuilder_.addMessage(m);
}
break;
} // case 10
case 18: {
com.yelp.nrtsearch.server.grpc.Polygon m =
input.readMessage(
com.yelp.nrtsearch.server.grpc.Polygon.parser(),
extensionRegistry);
if (holesBuilder_ == null) {
ensureHolesIsMutable();
holes_.add(m);
} else {
holesBuilder_.addMessage(m);
}
break;
} // case 18
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 points_ =
java.util.Collections.emptyList();
private void ensurePointsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
points_ = new java.util.ArrayList(points_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.type.LatLng, com.google.type.LatLng.Builder, com.google.type.LatLngOrBuilder> pointsBuilder_;
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public java.util.List getPointsList() {
if (pointsBuilder_ == null) {
return java.util.Collections.unmodifiableList(points_);
} else {
return pointsBuilder_.getMessageList();
}
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public int getPointsCount() {
if (pointsBuilder_ == null) {
return points_.size();
} else {
return pointsBuilder_.getCount();
}
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public com.google.type.LatLng getPoints(int index) {
if (pointsBuilder_ == null) {
return points_.get(index);
} else {
return pointsBuilder_.getMessage(index);
}
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder setPoints(
int index, com.google.type.LatLng value) {
if (pointsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensurePointsIsMutable();
points_.set(index, value);
onChanged();
} else {
pointsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder setPoints(
int index, com.google.type.LatLng.Builder builderForValue) {
if (pointsBuilder_ == null) {
ensurePointsIsMutable();
points_.set(index, builderForValue.build());
onChanged();
} else {
pointsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder addPoints(com.google.type.LatLng value) {
if (pointsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensurePointsIsMutable();
points_.add(value);
onChanged();
} else {
pointsBuilder_.addMessage(value);
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder addPoints(
int index, com.google.type.LatLng value) {
if (pointsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensurePointsIsMutable();
points_.add(index, value);
onChanged();
} else {
pointsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder addPoints(
com.google.type.LatLng.Builder builderForValue) {
if (pointsBuilder_ == null) {
ensurePointsIsMutable();
points_.add(builderForValue.build());
onChanged();
} else {
pointsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder addPoints(
int index, com.google.type.LatLng.Builder builderForValue) {
if (pointsBuilder_ == null) {
ensurePointsIsMutable();
points_.add(index, builderForValue.build());
onChanged();
} else {
pointsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder addAllPoints(
java.lang.Iterable extends com.google.type.LatLng> values) {
if (pointsBuilder_ == null) {
ensurePointsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, points_);
onChanged();
} else {
pointsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder clearPoints() {
if (pointsBuilder_ == null) {
points_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
pointsBuilder_.clear();
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public Builder removePoints(int index) {
if (pointsBuilder_ == null) {
ensurePointsIsMutable();
points_.remove(index);
onChanged();
} else {
pointsBuilder_.remove(index);
}
return this;
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public com.google.type.LatLng.Builder getPointsBuilder(
int index) {
return getPointsFieldBuilder().getBuilder(index);
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public com.google.type.LatLngOrBuilder getPointsOrBuilder(
int index) {
if (pointsBuilder_ == null) {
return points_.get(index); } else {
return pointsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public java.util.List extends com.google.type.LatLngOrBuilder>
getPointsOrBuilderList() {
if (pointsBuilder_ != null) {
return pointsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(points_);
}
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public com.google.type.LatLng.Builder addPointsBuilder() {
return getPointsFieldBuilder().addBuilder(
com.google.type.LatLng.getDefaultInstance());
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public com.google.type.LatLng.Builder addPointsBuilder(
int index) {
return getPointsFieldBuilder().addBuilder(
index, com.google.type.LatLng.getDefaultInstance());
}
/**
*
* Points defining the polygon, conforming to the https://geojson.org/ standard. The polygon must not be self-crossing, otherwise may result in unexpected behavior. Polygons cannot cross the 180th meridian. Instead, use two polygons: one on each side.
*
*
* repeated .google.type.LatLng points = 1;
*/
public java.util.List
getPointsBuilderList() {
return getPointsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.type.LatLng, com.google.type.LatLng.Builder, com.google.type.LatLngOrBuilder>
getPointsFieldBuilder() {
if (pointsBuilder_ == null) {
pointsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.type.LatLng, com.google.type.LatLng.Builder, com.google.type.LatLngOrBuilder>(
points_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
points_ = null;
}
return pointsBuilder_;
}
private java.util.List holes_ =
java.util.Collections.emptyList();
private void ensureHolesIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
holes_ = new java.util.ArrayList(holes_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.yelp.nrtsearch.server.grpc.Polygon, com.yelp.nrtsearch.server.grpc.Polygon.Builder, com.yelp.nrtsearch.server.grpc.PolygonOrBuilder> holesBuilder_;
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public java.util.List getHolesList() {
if (holesBuilder_ == null) {
return java.util.Collections.unmodifiableList(holes_);
} else {
return holesBuilder_.getMessageList();
}
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public int getHolesCount() {
if (holesBuilder_ == null) {
return holes_.size();
} else {
return holesBuilder_.getCount();
}
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public com.yelp.nrtsearch.server.grpc.Polygon getHoles(int index) {
if (holesBuilder_ == null) {
return holes_.get(index);
} else {
return holesBuilder_.getMessage(index);
}
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder setHoles(
int index, com.yelp.nrtsearch.server.grpc.Polygon value) {
if (holesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureHolesIsMutable();
holes_.set(index, value);
onChanged();
} else {
holesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder setHoles(
int index, com.yelp.nrtsearch.server.grpc.Polygon.Builder builderForValue) {
if (holesBuilder_ == null) {
ensureHolesIsMutable();
holes_.set(index, builderForValue.build());
onChanged();
} else {
holesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder addHoles(com.yelp.nrtsearch.server.grpc.Polygon value) {
if (holesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureHolesIsMutable();
holes_.add(value);
onChanged();
} else {
holesBuilder_.addMessage(value);
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder addHoles(
int index, com.yelp.nrtsearch.server.grpc.Polygon value) {
if (holesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureHolesIsMutable();
holes_.add(index, value);
onChanged();
} else {
holesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder addHoles(
com.yelp.nrtsearch.server.grpc.Polygon.Builder builderForValue) {
if (holesBuilder_ == null) {
ensureHolesIsMutable();
holes_.add(builderForValue.build());
onChanged();
} else {
holesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder addHoles(
int index, com.yelp.nrtsearch.server.grpc.Polygon.Builder builderForValue) {
if (holesBuilder_ == null) {
ensureHolesIsMutable();
holes_.add(index, builderForValue.build());
onChanged();
} else {
holesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder addAllHoles(
java.lang.Iterable extends com.yelp.nrtsearch.server.grpc.Polygon> values) {
if (holesBuilder_ == null) {
ensureHolesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, holes_);
onChanged();
} else {
holesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder clearHoles() {
if (holesBuilder_ == null) {
holes_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
holesBuilder_.clear();
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public Builder removeHoles(int index) {
if (holesBuilder_ == null) {
ensureHolesIsMutable();
holes_.remove(index);
onChanged();
} else {
holesBuilder_.remove(index);
}
return this;
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public com.yelp.nrtsearch.server.grpc.Polygon.Builder getHolesBuilder(
int index) {
return getHolesFieldBuilder().getBuilder(index);
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public com.yelp.nrtsearch.server.grpc.PolygonOrBuilder getHolesOrBuilder(
int index) {
if (holesBuilder_ == null) {
return holes_.get(index); } else {
return holesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public java.util.List extends com.yelp.nrtsearch.server.grpc.PolygonOrBuilder>
getHolesOrBuilderList() {
if (holesBuilder_ != null) {
return holesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(holes_);
}
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public com.yelp.nrtsearch.server.grpc.Polygon.Builder addHolesBuilder() {
return getHolesFieldBuilder().addBuilder(
com.yelp.nrtsearch.server.grpc.Polygon.getDefaultInstance());
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public com.yelp.nrtsearch.server.grpc.Polygon.Builder addHolesBuilder(
int index) {
return getHolesFieldBuilder().addBuilder(
index, com.yelp.nrtsearch.server.grpc.Polygon.getDefaultInstance());
}
/**
*
* Specify holes in the polygon. Hole polygons cannot themselves contain holes.
*
*
* repeated .luceneserver.Polygon holes = 2;
*/
public java.util.List
getHolesBuilderList() {
return getHolesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.yelp.nrtsearch.server.grpc.Polygon, com.yelp.nrtsearch.server.grpc.Polygon.Builder, com.yelp.nrtsearch.server.grpc.PolygonOrBuilder>
getHolesFieldBuilder() {
if (holesBuilder_ == null) {
holesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.yelp.nrtsearch.server.grpc.Polygon, com.yelp.nrtsearch.server.grpc.Polygon.Builder, com.yelp.nrtsearch.server.grpc.PolygonOrBuilder>(
holes_,
((bitField0_ & 0x00000002) != 0),
getParentForChildren(),
isClean());
holes_ = null;
}
return holesBuilder_;
}
@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:luceneserver.Polygon)
}
// @@protoc_insertion_point(class_scope:luceneserver.Polygon)
private static final com.yelp.nrtsearch.server.grpc.Polygon DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.yelp.nrtsearch.server.grpc.Polygon();
}
public static com.yelp.nrtsearch.server.grpc.Polygon getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Polygon 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.yelp.nrtsearch.server.grpc.Polygon getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}