Package org.drinkless.tdlib
Class TdApi.SearchQuote
- Enclosing class:
- TdApi
Searches for a given quote in a text. Returns found quote start position in UTF-16 code units. Returns a 404 error if the quote is not found. Can be called synchronously.
Returns FoundPosition
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.Quote to search for.intApproximate quote position in UTF-16 code units.Text in which to search for the quote. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which searches for a given quote in a text.SearchQuote(TdApi.FormattedText text, TdApi.FormattedText quote, int quotePosition) Creates a function, which searches for a given quote in a text. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
text
Text in which to search for the quote. -
quote
Quote to search for. -
quotePosition
public int quotePositionApproximate quote position in UTF-16 code units. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
SearchQuote
public SearchQuote()Default constructor for a function, which searches for a given quote in a text. Returns found quote start position in UTF-16 code units. Returns a 404 error if the quote is not found. Can be called synchronously.Returns
FoundPosition -
SearchQuote
Creates a function, which searches for a given quote in a text. Returns found quote start position in UTF-16 code units. Returns a 404 error if the quote is not found. Can be called synchronously.Returns
FoundPosition- Parameters:
text- Text in which to search for the quote.quote- Quote to search for.quotePosition- Approximate quote position in UTF-16 code units.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-