Class TdApi.SearchStringsByPrefix

Enclosing class:
TdApi

public static class TdApi.SearchStringsByPrefix extends TdApi.Function<TdApi.FoundPositions>
Searches specified query by word prefixes in the provided strings. Returns 0-based positions of strings that matched. Can be called synchronously.

Returns FoundPositions

  • Field Details

    • strings

      public String[] strings
      The strings to search in for the query.
    • query

      public String query
      Query to search for.
    • limit

      public int limit
      The maximum number of objects to return.
    • returnNoneForEmptyQuery

      public boolean returnNoneForEmptyQuery
      Pass true to receive no results for an empty query.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      Identifier uniquely determining type of the object.
      See Also:
  • Constructor Details

    • SearchStringsByPrefix

      public SearchStringsByPrefix()
      Default constructor for a function, which searches specified query by word prefixes in the provided strings. Returns 0-based positions of strings that matched. Can be called synchronously.

      Returns FoundPositions

    • SearchStringsByPrefix

      public SearchStringsByPrefix(String[] strings, String query, int limit, boolean returnNoneForEmptyQuery)
      Creates a function, which searches specified query by word prefixes in the provided strings. Returns 0-based positions of strings that matched. Can be called synchronously.

      Returns FoundPositions

      Parameters:
      strings - The strings to search in for the query.
      query - Query to search for.
      limit - The maximum number of objects to return.
      returnNoneForEmptyQuery - Pass true to receive no results for an empty query.
  • Method Details