Package | flash.globalization |
Class | public final class CollatorMode |
Inheritance | CollatorMode Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10.1, AIR 2 |
initialMode
parameter
of the Collator()
constructor.
See also
Public Properties
Public Methods
Public Constants
Constant | Defined By | ||
---|---|---|---|
MATCHING : String = "matching" [static]
Initializes a Collator object so that the compare method is optimized for
determining whether two strings are equivalent. | CollatorMode | ||
SORTING : String = "sorting" [static]
Initializes a Collator object so that the compare method is optimized for
sorting a list of text strings to be displayed to an end user. | CollatorMode |
Constant Detail
MATCHING | Constant |
public static const MATCHING:String = "matching"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10.1, AIR 2 |
Initializes a Collator object so that the compare method is optimized for determining whether two strings are equivalent. In this mode, string comparisons ignore differences in uppercase and lower case letters, accented characters, etc.
See also
SORTING | Constant |
public static const SORTING:String = "sorting"
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10.1, AIR 2 |
Initializes a Collator object so that the compare method is optimized for sorting a list of text strings to be displayed to an end user. In this mode, string comparisons consider differences in uppercase and lowercase letters, accented characters, and so on, according to the language and sorting rules required by the locale.
See also
Thu May 20 2010, 02:19 AM -07:00