File: Collator.hx

package info (click to toggle)
haxe 1%3A4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,520 kB
  • sloc: ml: 137,268; ansic: 2,491; makefile: 456; java: 386; cs: 336; cpp: 318; python: 318; sh: 75; objc: 64; php: 50; xml: 31; javascript: 11
file content (32 lines) | stat: -rw-r--r-- 1,714 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package flash.globalization;

@:require(flash10_1) extern final class Collator {
	@:flash.property var actualLocaleIDName(get,never) : String;
	@:flash.property var ignoreCase(get,set) : Bool;
	@:flash.property var ignoreCharacterWidth(get,set) : Bool;
	@:flash.property var ignoreDiacritics(get,set) : Bool;
	@:flash.property var ignoreKanaType(get,set) : Bool;
	@:flash.property var ignoreSymbols(get,set) : Bool;
	@:flash.property var lastOperationStatus(get,never) : LastOperationStatus;
	@:flash.property var numericComparison(get,set) : Bool;
	@:flash.property var requestedLocaleIDName(get,never) : String;
	function new(requestedLocaleIDName : String, ?initialMode : CollatorMode) : Void;
	function compare(string1 : String, string2 : String) : Int;
	function equals(string1 : String, string2 : String) : Bool;
	private function get_actualLocaleIDName() : String;
	private function get_ignoreCase() : Bool;
	private function get_ignoreCharacterWidth() : Bool;
	private function get_ignoreDiacritics() : Bool;
	private function get_ignoreKanaType() : Bool;
	private function get_ignoreSymbols() : Bool;
	private function get_lastOperationStatus() : LastOperationStatus;
	private function get_numericComparison() : Bool;
	private function get_requestedLocaleIDName() : String;
	private function set_ignoreCase(value : Bool) : Bool;
	private function set_ignoreCharacterWidth(value : Bool) : Bool;
	private function set_ignoreDiacritics(value : Bool) : Bool;
	private function set_ignoreKanaType(value : Bool) : Bool;
	private function set_ignoreSymbols(value : Bool) : Bool;
	private function set_numericComparison(value : Bool) : Bool;
	static function getAvailableLocaleIDNames() : flash.Vector<String>;
}