Libraries.Web.Page.LanguageCode Documentation

This class represents the language HTML language codes.

Inherits from: Libraries.Language.Object

Variables Table

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

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