Libraries.Web.Page.LanguageCode Documentation

This class represents the language HTML language codes.

Inherits from: Libraries.Language.Object

Variables Table

VariablesDescription
text yoruba
text farsi
text punjabi
text gujarati
text byelorussian
text oriya
text basque
text estonian
text hindi
text bengali
text sichuanYi
text finnish
text malay
text shona
text norwegian
text armenian
text catalan
text sundanese
text romanian
text marathi
text japanese
text wolof
text kurdish
text icelandic
text turkmen
text latvian
text flemish
text korean
text yiddish
text maori
text ido
text moldavian
text uighur
text tsonga
text fulfulde
text serbian
text corsican
text kashmiri
text guarani
text french
text assamese
text burmese
text ukrainian
text rhaetoRomance
text siswati
text greek
text frisian
text samoan
text danish
text occitan
text inuktitut
text urdu
text dutch
text macedonian
text papiamentu
text sangro
text kirghiz
text tonga
text slovak
text twi
text german
text volapuk
text galician
text tamazight
text hawaiian
text malayalam
text bislama
text abkhazian
text nauru
text limburgish
text hebrew
text interlingua
text yi
text sami
text cherokee
text venda
text sindhi
text aragonese
text latin
text thai
text afar
text greenlandic
text divehi
text italian
text tigrinya
text inupiak
text fiji
text malagasy
text russian
text faeroese
text wallon
text lingala
text konkani
text igbo
text croatian
text ibibio
text zulu
text uzbek
text sinhalese
text quechua
text cambodian
text kinyarwanda
text amharic
text turkish
text telugu
text laothian
text gaelic
text javanese
text georgian
text maltese
text kanuri
text azerbaijani
text chewa
text tajik
text xhosa
text portuguese
text hausa
text mongolian
text vietnamese
text haitian
text nepali
text spanish
text breton
text irish
text syriac
text sesotho
text edo
text english
text hungarian
text afrikaans
text arabic
text somali
text albanian
text kazakh
text bihari
text polish
text aymara
text tibetan
text bhutani
text welsh
text lithuanian
text swahili
text chinese
text pashto
text esperanto
text bashkir
text tamil
text slovenian
text interlingue
text tagalog
text kannada
text tatar
text oromo
text kirundi
text czech
text swedish
text serboCroatian
text indonesian
text sanskrit
text setswana
text bulgarian

Actions Documentation

Compare(Libraries.Language.Object object)

This action compares two object hash codes and returns an integer. The result is larger if this hash code is larger than the object passed as a parameter, smaller, or equal. In this case, -1 means smaller, 0 means equal, and 1 means larger. This action was changed in Quorum 7 to return an integer, instead of a CompareResult object, because the previous implementation was causing efficiency issues.

Parameters

Return

integer: The Compare result, Smaller, Equal, or Larger.

Example

Object o
Object t
integer result = o:Compare(t) //1 (larger), 0 (equal), or -1 (smaller)

Equals(Libraries.Language.Object object)

This action determines if two objects are equal based on their hash code values.

Parameters

Return

boolean: True if the hash codes are equal and false if they are not equal.

Example

use Libraries.Language.Object
use Libraries.Language.Types.Text
Object o
Text t
boolean result = o:Equals(t)

GetHashCode()

This action gets the hash code for an object.

Return

integer: The integer hash code of the object.

Example

Object o
integer hash = o:GetHashCode()