indexing
description: "Language (LANG) and sublanguage (SUBLANG) constants."
legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date: 2006-01-22 18:25:44 -0800 (Sun, 22 Jan 2006) $"
revision: "$Revision: 56675 $"
class interface
WEL_LANGUAGE_CONSTANTS
create
default_create
ANY
feature
generating_type: STRING_8
ANY
generator: STRING_8
ANY
lang_afrikaans: INTEGER_32 is 54
lang_albanian: INTEGER_32 is 28
lang_arabic: INTEGER_32 is 1
lang_basque: INTEGER_32 is 45
lang_belarusian: INTEGER_32 is 35
lang_bulgarian: INTEGER_32 is 2
lang_catalan: INTEGER_32 is 3
lang_chinese: INTEGER_32 is 4
lang_croatian: INTEGER_32 is 26
lang_czech: INTEGER_32 is 5
lang_danish: INTEGER_32 is 6
lang_dutch: INTEGER_32 is 19
lang_english: INTEGER_32 is 9
lang_estonian: INTEGER_32 is 37
lang_faeroese: INTEGER_32 is 56
lang_farsi: INTEGER_32 is 41
lang_finnish: INTEGER_32 is 11
lang_french: INTEGER_32 is 12
lang_german: INTEGER_32 is 7
lang_greek: INTEGER_32 is 8
lang_hebrew: INTEGER_32 is 13
lang_hungarian: INTEGER_32 is 14
lang_icelandic: INTEGER_32 is 15
lang_indonesian: INTEGER_32 is 33
lang_italian: INTEGER_32 is 16
lang_japanese: INTEGER_32 is 17
lang_korean: INTEGER_32 is 18
lang_latvian: INTEGER_32 is 38
lang_lithuanian: INTEGER_32 is 39
lang_neutral: INTEGER_32 is 0
lang_norwegian: INTEGER_32 is 20
lang_polish: INTEGER_32 is 21
lang_portuguese: INTEGER_32 is 22
lang_romanian: INTEGER_32 is 24
lang_russian: INTEGER_32 is 25
lang_serbian: INTEGER_32 is 26
lang_slovak: INTEGER_32 is 27
lang_slovenian: INTEGER_32 is 36
lang_spanish: INTEGER_32 is 10
lang_swedish: INTEGER_32 is 29
lang_thai: INTEGER_32 is 30
lang_turkish: INTEGER_32 is 31
lang_ukrainian: INTEGER_32 is 34
lang_vietnamese: INTEGER_32 is 42
sublang_arabic_algeria: INTEGER_32 is 5
sublang_arabic_bahrain: INTEGER_32 is 15
sublang_arabic_egypt: INTEGER_32 is 3
sublang_arabic_iraq: INTEGER_32 is 2
sublang_arabic_jordan: INTEGER_32 is 11
sublang_arabic_kuwait: INTEGER_32 is 13
sublang_arabic_lebanon: INTEGER_32 is 12
sublang_arabic_libya: INTEGER_32 is 4
sublang_arabic_morocco: INTEGER_32 is 6
sublang_arabic_oman: INTEGER_32 is 8
sublang_arabic_qatar: INTEGER_32 is 16
sublang_arabic_saudi_arabia: INTEGER_32 is 1
sublang_arabic_syria: INTEGER_32 is 10
sublang_arabic_tunisia: INTEGER_32 is 7
sublang_arabic_uae: INTEGER_32 is 14
sublang_arabic_yemen: INTEGER_32 is 9
sublang_chinese_hongkong: INTEGER_32 is 3
sublang_chinese_simplified: INTEGER_32 is 2
sublang_chinese_singapore: INTEGER_32 is 4
sublang_chinese_traditional: INTEGER_32 is 1
sublang_default: INTEGER_32 is 1
sublang_dutch: INTEGER_32 is 1
sublang_dutch_belgian: INTEGER_32 is 2
sublang_english_aus: INTEGER_32 is 3
sublang_english_belize: INTEGER_32 is 10
sublang_english_can: INTEGER_32 is 4
sublang_english_caribbean: INTEGER_32 is 9
sublang_english_eire: INTEGER_32 is 6
sublang_english_jamaica: INTEGER_32 is 8
sublang_english_nz: INTEGER_32 is 5
sublang_english_south_africa: INTEGER_32 is 7
sublang_english_trinidad: INTEGER_32 is 11
sublang_english_uk: INTEGER_32 is 2
sublang_english_us: INTEGER_32 is 1
sublang_french: INTEGER_32 is 1
sublang_french_belgian: INTEGER_32 is 2
sublang_french_canadian: INTEGER_32 is 3
sublang_french_luxembourg: INTEGER_32 is 5
sublang_french_swiss: INTEGER_32 is 4
sublang_german: INTEGER_32 is 1
sublang_german_austrian: INTEGER_32 is 3
sublang_german_liechtenstein: INTEGER_32 is 5
sublang_german_luxembourg: INTEGER_32 is 4
sublang_german_swiss: INTEGER_32 is 2
sublang_italian: INTEGER_32 is 1
sublang_italian_swiss: INTEGER_32 is 2
sublang_korean: INTEGER_32 is 1
sublang_neutral: INTEGER_32 is 0
sublang_norwegian_bokmal: INTEGER_32 is 1
sublang_norwegian_nynorsk: INTEGER_32 is 2
sublang_portuguese: INTEGER_32 is 2
sublang_portuguese_brazilian: INTEGER_32 is 1
sublang_serbian_cyrillic: INTEGER_32 is 3
sublang_serbian_latin: INTEGER_32 is 2
sublang_spanish: INTEGER_32 is 1
sublang_spanish_argentina: INTEGER_32 is 11
sublang_spanish_bolivia: INTEGER_32 is 16
sublang_spanish_chile: INTEGER_32 is 13
sublang_spanish_colombia: INTEGER_32 is 9
sublang_spanish_costa_rica: INTEGER_32 is 5
sublang_spanish_dominican_republic: INTEGER_32 is 7
sublang_spanish_ecuador: INTEGER_32 is 12
sublang_spanish_el_salvador: INTEGER_32 is 17
sublang_spanish_guatemala: INTEGER_32 is 4
sublang_spanish_honduras: INTEGER_32 is 18
sublang_spanish_mexican: INTEGER_32 is 2
sublang_spanish_modern: INTEGER_32 is 3
sublang_spanish_nicaragua: INTEGER_32 is 19
sublang_spanish_panama: INTEGER_32 is 6
sublang_spanish_paraguay: INTEGER_32 is 15
sublang_spanish_peru: INTEGER_32 is 10
sublang_spanish_puerto_rico: INTEGER_32 is 20
sublang_spanish_uruguay: INTEGER_32 is 14
sublang_spanish_venezuela: INTEGER_32 is 8
sublang_swedish: INTEGER_32 is 1
sublang_swedish_finland: INTEGER_32 is 2
sublang_sys_default: INTEGER_32 is 2
feature
frozen deep_equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
shallow_implies_deep: standard_equal (some, other) implies Result
both_or_none_void: (some = Void) implies (Result = (other = Void))
same_type: (Result and (some /= Void)) implies some.same_type (other)
symmetric: Result implies deep_equal (other, some)
frozen equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.is_equal (other))
is_equal (other: like Current): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
symmetric: Result implies other.is_equal (Current)
consistent: standard_is_equal (other) implies Result
frozen standard_equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.standard_is_equal (other))
frozen standard_is_equal (other: like Current): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
same_type: Result implies same_type (other)
symmetric: Result implies other.standard_is_equal (Current)
feature
conforms_to (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
same_type (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
definition: Result = (conforms_to (other) and other.conforms_to (Current))
feature
copy (other: like Current)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_equal: is_equal (other)
frozen deep_copy (other: like Current)
copy`other'deep_twin
ANY
require ANY
other_not_void: other /= Void
ensure ANY
deep_equal: deep_equal (Current, other)
frozen deep_twin: like Current
ANY
ensure ANY
deep_equal: deep_equal (Current, Result)
frozen standard_copy (other: like Current)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_standard_equal: standard_is_equal (other)
frozen standard_twin: like Current
`other'
ANY
ensure ANY
standard_twin_not_void: Result /= Void
equal: standard_equal (Result, Current)
frozen twin: like Current
`Current'
twincopycopy
ANY
ensure ANY
twin_not_void: Result /= Void
is_equal: Result.is_equal (Current)
feature
frozen default: like Current
ANY
frozen default_pointer: POINTER
`POINTER'
`p'default
`p'`POINTER'
ANY
default_rescue
ANY
frozen do_nothing
ANY
feature
io: STD_FILES
ANY
out: STRING_8
ANYtagged_out
ANY
print (some: ANY)
`some'
ANY
frozen tagged_out: STRING_8
ANYout
ANY
feature
operating_environment: OPERATING_ENVIRONMENT
ANY
invariant
ANY
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
indexing
copyright: "Copyright (c) 1984-2006, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software
356 Storke Road, Goleta, CA 93117 USA
Telephone 805-685-1006, Fax 805-685-6869
Website http://www.eiffel.com
Customer support http://support.eiffel.com
]"
end WEL_LANGUAGE_CONSTANTS