Package org.drinkless.tdlib
Class TdApi.TextEntity
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.TextEntity
-
- Enclosing class:
- TdApi
public static class TdApi.TextEntity extends TdApi.Object
Represents a part of the text that needs to be formatted in some unusual way.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.intlengthLength of the entity, in UTF-16 code units.intoffsetOffset of the entity, in UTF-16 code units.TdApi.TextEntityTypetypeType of the entity.
-
Constructor Summary
Constructors Constructor Description TextEntity()Represents a part of the text that needs to be formatted in some unusual way.TextEntity(int offset, int length, TdApi.TextEntityType type)Represents a part of the text that needs to be formatted in some unusual way.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
offset
public int offset
Offset of the entity, in UTF-16 code units.
-
length
public int length
Length of the entity, in UTF-16 code units.
-
type
public TdApi.TextEntityType type
Type of the entity.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TextEntity
public TextEntity()
Represents a part of the text that needs to be formatted in some unusual way.
-
TextEntity
public TextEntity(int offset, int length, TdApi.TextEntityType type)Represents a part of the text that needs to be formatted in some unusual way.- Parameters:
offset- Offset of the entity, in UTF-16 code units.length- Length of the entity, in UTF-16 code units.type- Type of the entity.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-