Libraries.Web.Page.LanguageCode Documentation

This class represents the language HTML language codes.

Inherits from: Libraries.Language.Object

Variables Table

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

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