Libraries.Web.Page.LanguageCode Documentation

This class represents the language HTML language codes.

Inherits from: Libraries.Language.Object

Variables Table

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

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