Libraries.Web.Page.LanguageCode Documentation

This class represents the language HTML language codes.

Inherits from: Libraries.Language.Object

Variables Table

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

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()