Package org.drinkless.tdlib
Class TdApi.LanguagePackStringValuePluralized
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.LanguagePackStringValue
org.drinkless.tdlib.TdApi.LanguagePackStringValuePluralized
- Enclosing class:
- TdApi
A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.Value for few objects.Value for many objects.Value for one object.Default value.Value for two objects.Value for zero objects. -
Constructor Summary
ConstructorsConstructorDescriptionA language pack string which has different forms based on the number of some object it mentions.LanguagePackStringValuePluralized(String zeroValue, String oneValue, String twoValue, String fewValue, String manyValue, String otherValue) A language pack string which has different forms based on the number of some object it mentions. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
zeroValue
Value for zero objects. -
oneValue
Value for one object. -
twoValue
Value for two objects. -
fewValue
Value for few objects. -
manyValue
Value for many objects. -
otherValue
Default value. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
LanguagePackStringValuePluralized
public LanguagePackStringValuePluralized()A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information. -
LanguagePackStringValuePluralized
public LanguagePackStringValuePluralized(String zeroValue, String oneValue, String twoValue, String fewValue, String manyValue, String otherValue) A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information.- Parameters:
zeroValue- Value for zero objects.oneValue- Value for one object.twoValue- Value for two objects.fewValue- Value for few objects.manyValue- Value for many objects.otherValue- Default value.
-
-
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
-