Libraries.Web.Page.LanguageCode Documentation

This class represents the language HTML language codes.

Inherits from: Libraries.Language.Object

Variables Table

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

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