Language

enum Language : ProtocolMessageEnum
Specifies common/major languages present in software development or the open internet. This is not an exhaustive list
and if you need to specify an entry that isn't present (without a code change), it is best to opt for the `iso_`-
prefixed fields in `LanguageSpec`.
Protobuf enum elide.base.Language

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
val ARABIC_VALUE: Int = 6
Generic, unqualified reference to Arabic.
ARABIC = 6;
Link copied to clipboard
Generic, unqualified reference to Chinese.
CHINESE = 3;
Link copied to clipboard
Generic, unqualified reference to English.
ENGLISH = 0;
Link copied to clipboard
val FRENCH_VALUE: Int = 1
Generic, unqualified reference to French.
FRENCH = 1;
Link copied to clipboard
val HINDI_VALUE: Int = 7
Generic, unqualified reference to Hindi.
HINDI = 7;
Link copied to clipboard
Generic, unqualified reference to Italian.
ITALIAN = 8;
Link copied to clipboard
Generic, unqualified reference to Japanese.
JAPANESE = 5;
Link copied to clipboard
val KOREAN_VALUE: Int = 4
Generic, unqualified reference to Korean.
KOREAN = 4;
Link copied to clipboard
Generic, unqualified reference to Spanish.
SPANISH = 2;

Functions

Link copied to clipboard
open fun forNumber(value: Int): Language
Link copied to clipboard
fun getDescriptor(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getDescriptorForType(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getNumber(): Int
Link copied to clipboard
fun getValueDescriptor(): Descriptors.EnumValueDescriptor
Link copied to clipboard
open fun internalGetValueMap(): Internal.EnumLiteMap<Language>
Link copied to clipboard
open fun valueOf(desc: Descriptors.EnumValueDescriptor): Language
open fun valueOf(value: Int): Language

open fun valueOf(name: String): Language

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
open fun values(): Array<Language>

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.