Paket | spark.validators.supportClasses |
Sınıf | public class GlobalizationUtils |
Miras Alma | GlobalizationUtils Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10.1, AIR 2.5 |
This class contains the utility routines needed for all Validators. Examples of typical routines are checking for unicode white space, trimming all spaces in a string at the beginning and end.
Yöntem | Tanımlayan: | ||
---|---|---|---|
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
[statik]
Return true if a codepoint is a numeric digit. | GlobalizationUtils | ||
[statik]
Return true if a codepoint is a leading surrogate. | GlobalizationUtils | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
[statik]
Return true if a codepoint is a trailing surrogate. | GlobalizationUtils | ||
[statik]
Return true if a codepoint is a white space character. | GlobalizationUtils | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
[statik]
Convert a surrogate pair to UTF32. | GlobalizationUtils | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
[statik]
Removes leading and trailing white space characters. | GlobalizationUtils | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
isDigit | () | yöntem |
public static function isDigit(ccode:uint):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10.1, AIR 2.5 |
Return true
if a codepoint is a numeric digit.
Supported digits are listed in
flash.globalization.NationalDigitsType
.
Parametreler
ccode:uint — input codepoint
|
Boolean — true if a codepoint is a numeric digit.
|
isLeadingSurrogate | () | yöntem |
public static function isLeadingSurrogate(ccode:uint):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10.1, AIR 2.5 |
Return true
if a codepoint is a leading surrogate.
Parametreler
ccode:uint — The input codepoint.
|
Boolean — true if a codepoint is a leading surrogate,
and false if not.
|
isTrailingSurrogate | () | yöntem |
public static function isTrailingSurrogate(ccode:uint):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10.1, AIR 2.5 |
Return true
if a codepoint is a trailing surrogate.
Parametreler
ccode:uint — The input codepoint.
|
Boolean — true if a codepoint is a trailing surrogate,
and false if not.
|
isWhiteSpace | () | yöntem |
public static function isWhiteSpace(ccode:uint):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10.1, AIR 2.5 |
Return true
if a codepoint is a white space character.
Supports all unicode white space characters.
The unicode supported white spaces are:
ASCII_SPACE (0x20) NO_BREAK_SPACE (0xA0) UNICODE_OGHAM_SPACE_MARK (0x1680) Unicode spaces 0x2000 - 0x200B UNICODE_NARROW_NOBREAK_SPACE (0x202F) UNICODE_MEDIUM_MATHEMATICAL_SPACE (0x205F) UNICODE_IDEOGRAPHIC_SPACE (0x3000) UNICODE_ZEROWIDTH_NOBREAK_SPACE (0xFEFF)
Parametreler
ccode:uint — The input codepoint.
|
Boolean — true if a codepoint is a white space character,
and false if not.
|
surrogateToUTF32 | () | yöntem |
trim | () | yöntem |
public static function trim(input:String):String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 10.1, AIR 2.5 |
Removes leading and trailing white space characters.
Parametreler
input:String — Input string to process.
|
String — String after removing leading and trailing
white space characters.
|
Tue Jun 12 2018, 01:09 PM Z