Package com.google.geo.type
Interface ViewportOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Viewport,Viewport.Builder
public interface ViewportOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LatLnggetHigh()Required.LatLngOrBuildergetHighOrBuilder()Required.LatLnggetLow()Required.LatLngOrBuildergetLowOrBuilder()Required.booleanhasHigh()Required.booleanhasLow()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasLow
boolean hasLow()
Required. The low point of the viewport.
.google.type.LatLng low = 1;- Returns:
- Whether the low field is set.
-
getLow
LatLng getLow()
Required. The low point of the viewport.
.google.type.LatLng low = 1;- Returns:
- The low.
-
getLowOrBuilder
LatLngOrBuilder getLowOrBuilder()
Required. The low point of the viewport.
.google.type.LatLng low = 1;
-
hasHigh
boolean hasHigh()
Required. The high point of the viewport.
.google.type.LatLng high = 2;- Returns:
- Whether the high field is set.
-
getHigh
LatLng getHigh()
Required. The high point of the viewport.
.google.type.LatLng high = 2;- Returns:
- The high.
-
getHighOrBuilder
LatLngOrBuilder getHighOrBuilder()
Required. The high point of the viewport.
.google.type.LatLng high = 2;
-
-