note
	description: "Code page constants for general encodings"
	legal: "See notice at end of class."
	status: "See notice at end of class."
	date: "$Date: 2020-05-19 14:18:09 +0000 (Tue, 19 May 2020) $"
	revision: "$Revision: 104255 $"

class 
	CODE_PAGE_CONSTANTS

create 
	default_create

feature -- Access

	Utf7: STRING_8 = "UTF-7"

	Utf8: STRING_8 = "UTF-8"

	Utf16: STRING_8 = "UTF-16"

	Utf32: STRING_8 = "UTF-32"
			-- UCS-4 and UTF-32 are functionally identical since ISO 10646..
	
feature -- Little/Big endian

	Utf16_le: STRING_8 = "UTF-16LE"

	Utf32_le: STRING_8 = "UTF-32LE"

	Utf16_be: STRING_8 = "UTF-16BE"

	Utf32_be: STRING_8 = "UTF-32BE"
	
note
	library: "Encoding: Library of reusable components for Eiffel."
	copyright: "Copyright (c) 1984-2020, Eiffel Software and others"
	license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
	source: "[
		Eiffel Software
		5949 Hollister Ave., Goleta, CA 93117 USA
		Telephone 805-685-1006, Fax 805-685-6869
		Website http://www.eiffel.com
		Customer support http://support.eiffel.com
	]"

end -- class CODE_PAGE_CONSTANTS

Generated by ISE EiffelStudio