Class GetFeatureCollectionBySpatialSearchCircle

java.lang.Object
com.here.platform.data.client.service.interactiveMap.GetFeatureCollectionBySpatialSearchCircle
All Implemented Interfaces:
Api, Endpoint, RestEndpoint, InteractiveMapApi, Serializable, scala.Equals, scala.Product

public final class GetFeatureCollectionBySpatialSearchCircle extends Object implements InteractiveMapApi, RestEndpoint, scala.Product, Serializable
See Also:
  • Constructor Details

    • GetFeatureCollectionBySpatialSearchCircle

      public GetFeatureCollectionBySpatialSearchCircle(String layerId, double latitude, double longitude, int radius, scala.collection.immutable.Set<SearchParam> searchParam, scala.collection.immutable.Set<String> selection, scala.Option<Object> limit, scala.Option<InteractiveMapContext> context, scala.Option<Object> version, scala.Option<String> author)
  • Method Details

    • apply

      public abstract static R apply(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10)
    • toString

      public static String toString()
    • layerId

      public String layerId()
    • latitude

      public double latitude()
    • longitude

      public double longitude()
    • radius

      public int radius()
    • searchParam

      public scala.collection.immutable.Set<SearchParam> searchParam()
    • selection

      public scala.collection.immutable.Set<String> selection()
    • limit

      public scala.Option<Object> limit()
    • context

      public scala.Option<InteractiveMapContext> context()
    • version

      public scala.Option<Object> version()
    • author

      public scala.Option<String> author()
    • searchString

      public scala.collection.immutable.Map<String,scala.collection.immutable.Seq<String>> searchString()
    • path

      public String path()
      Specified by:
      path in interface RestEndpoint
    • query

      public scala.collection.immutable.Map<String,scala.collection.immutable.Seq<String>> query()
      Specified by:
      query in interface RestEndpoint
    • method

      public org.apache.pekko.http.scaladsl.model.HttpMethod method()
      Specified by:
      method in interface Endpoint
    • headers

      public scala.collection.immutable.Seq<org.apache.pekko.http.scaladsl.model.HttpHeader> headers()
      Description copied from interface: Endpoint
      Note: when change it always check all conflicts/replacements that can happens by base and child classes
      Specified by:
      headers in interface Endpoint
    • forceStrict

      public boolean forceStrict()
      Description copied from interface: Endpoint
      Force to read all response body in memory inside retried block, this is used when simple responses return chunked data that can cause Truncation exception when parsed.

      TODO: can become !isStreamingRequest, but need some heavy test to see the memory impact

      Specified by:
      forceStrict in interface Endpoint