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

com.google.maps.routing.v2.WaypointOrBuilder Maven / Gradle / Ivy

/*
 * Copyright 2024 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/routing/v2/waypoint.proto

// Protobuf Java Version: 3.25.3
package com.google.maps.routing.v2;

public interface WaypointOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.maps.routing.v2.Waypoint)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * A point specified using geographic coordinates, including an optional
   * heading.
   * 
* * .google.maps.routing.v2.Location location = 1; * * @return Whether the location field is set. */ boolean hasLocation(); /** * * *
   * A point specified using geographic coordinates, including an optional
   * heading.
   * 
* * .google.maps.routing.v2.Location location = 1; * * @return The location. */ com.google.maps.routing.v2.Location getLocation(); /** * * *
   * A point specified using geographic coordinates, including an optional
   * heading.
   * 
* * .google.maps.routing.v2.Location location = 1; */ com.google.maps.routing.v2.LocationOrBuilder getLocationOrBuilder(); /** * * *
   * The POI Place ID associated with the waypoint.
   * 
* * string place_id = 2; * * @return Whether the placeId field is set. */ boolean hasPlaceId(); /** * * *
   * The POI Place ID associated with the waypoint.
   * 
* * string place_id = 2; * * @return The placeId. */ java.lang.String getPlaceId(); /** * * *
   * The POI Place ID associated with the waypoint.
   * 
* * string place_id = 2; * * @return The bytes for placeId. */ com.google.protobuf.ByteString getPlaceIdBytes(); /** * * *
   * Human readable address or a plus code.
   * See https://plus.codes for details.
   * 
* * string address = 7; * * @return Whether the address field is set. */ boolean hasAddress(); /** * * *
   * Human readable address or a plus code.
   * See https://plus.codes for details.
   * 
* * string address = 7; * * @return The address. */ java.lang.String getAddress(); /** * * *
   * Human readable address or a plus code.
   * See https://plus.codes for details.
   * 
* * string address = 7; * * @return The bytes for address. */ com.google.protobuf.ByteString getAddressBytes(); /** * * *
   * Marks this waypoint as a milestone rather a stopping point. For
   * each non-via waypoint in the request, the response appends an entry to the
   * [`legs`][google.maps.routing.v2.Route.legs]
   * array to provide the details for stopovers on that leg of the trip. Set
   * this value to true when you want the route to pass through this waypoint
   * without stopping over. Via waypoints don't cause an entry to be added to
   * the `legs` array, but they do route the journey through the waypoint. You
   * can only set this value on waypoints that are intermediates. The request
   * fails if you set this field on terminal waypoints. If
   * `ComputeRoutesRequest.optimize_waypoint_order` is set to true then this
   * field cannot be set to true; otherwise, the request fails.
   * 
* * bool via = 3; * * @return The via. */ boolean getVia(); /** * * *
   * Indicates that the waypoint is meant for vehicles to stop at, where the
   * intention is to either pickup or drop-off. When you set this value, the
   * calculated route won't include non-`via` waypoints on roads that are
   * unsuitable for pickup and drop-off. This option works only for `DRIVE` and
   * `TWO_WHEELER` travel modes, and when the `location_type` is
   * [`Location`][google.maps.routing.v2.Location].
   * 
* * bool vehicle_stopover = 4; * * @return The vehicleStopover. */ boolean getVehicleStopover(); /** * * *
   * Indicates that the location of this waypoint is meant to have a preference
   * for the vehicle to stop at a particular side of road. When you set this
   * value, the route will pass through the location so that the vehicle can
   * stop at the side of road that the location is biased towards from the
   * center of the road. This option works only for `DRIVE` and `TWO_WHEELER`
   * [`RouteTravelMode`][google.maps.routing.v2.RouteTravelMode].
   * 
* * bool side_of_road = 5; * * @return The sideOfRoad. */ boolean getSideOfRoad(); com.google.maps.routing.v2.Waypoint.LocationTypeCase getLocationTypeCase(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy