Class FeatureQuery.Builder

java.lang.Object
com.luciad.models.features.FeatureQuery.Builder
All Implemented Interfaces:
AutoCloseable
Enclosing class:
FeatureQuery

public static final class FeatureQuery.Builder extends Object implements AutoCloseable
Builder to create a FeatureQuery.
  • Constructor Details Link icon

  • Method Details Link icon

    • finalize Link icon

      protected void finalize()
      Overrides:
      finalize in class Object
    • close Link icon

      public void close()
      Specified by:
      close in interface AutoCloseable
    • build Link icon

      @NotNull public FeatureQuery build()
      Creates the FeatureQuery for the configured conditions and settings.
      Returns:
      the FeatureQuery for the configured conditions and settings.
    • bounds Link icon

      @NotNull public FeatureQuery.Builder bounds(@NotNull Bounds bounds)
      Sets the bounds the queried features must interact with.
      Parameters:
      bounds - the bounds the queried features must interact with
      Returns:
      this
    • condition Link icon

      @NotNull public FeatureQuery.Builder condition(@NotNull Expression condition)
      Sets the condition to apply.
      Parameters:
      condition - the condition to apply
      Returns:
      this
    • featureIds Link icon

      @NotNull public FeatureQuery.Builder featureIds(@NotNull List<Long> featureIds)
      Sets the feature ids to select.
      Parameters:
      featureIds - the feature ids to select
      Returns:
      this
    • sort Link icon

      @NotNull public FeatureQuery.Builder sort(@NotNull FeatureQuery.SortOperator order)
      Sets the sorting of the features.
      Parameters:
      order - the sorting of the features
      Returns:
      this
    • limit Link icon

      @NotNull public FeatureQuery.Builder limit(long limit)
      Sets the maximum number of features to return.
      Parameters:
      limit - the maximum number of features to return
      Returns:
      this