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
public static class TdApi.LanguagePackStringValuePluralized extends TdApi.LanguagePackStringValue
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 info.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringfewValueValue for few objects.StringmanyValueValue for many objects.StringoneValueValue for one object.StringotherValueDefault value.StringtwoValueValue for two objects.StringzeroValueValue for zero objects.
-
Constructor Summary
Constructors Constructor Description LanguagePackStringValuePluralized()A 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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
zeroValue
public String zeroValue
Value for zero objects.
-
oneValue
public String oneValue
Value for one object.
-
twoValue
public String twoValue
Value for two objects.
-
fewValue
public String fewValue
Value for few objects.
-
manyValue
public String manyValue
Value for many objects.
-
otherValue
public String otherValue
Default value.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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 info.
-
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 info.- 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 Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-