1234567891011121314151617181920212223242526272829303132 |
- 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>;
- }
|