Paket | spark.globalization |
Sınıf | public final class LastOperationStatus |
Miras Alma | LastOperationStatus Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.55 |
Çalışma Zamanı Sürümleri: | Flash Player 10.1, AIR 2.5 |
lastOperationStatus
available in most globalization classes.
İlgili API Öğeleri
Sabit | Tanımlayan: | ||
---|---|---|---|
BUFFER_OVERFLOW_ERROR : String = "bufferOverflowError" [statik]
Indicates that given buffer is not enough to hold the result. | LastOperationStatus | ||
ERROR_CODE_UNKNOWN : String = "errorCodeUnknown" [statik]
Indicates that the return error code is not known. | LastOperationStatus | ||
ILLEGAL_ARGUMENT_ERROR : String = "illegalArgumentError" [statik]
Indicates that an argument passed to a method was illegal. | LastOperationStatus | ||
INDEX_OUT_OF_BOUNDS_ERROR : String = "indexOutOfBoundsError" [statik]
Indicates that an iterator went out of range or an invalid parameter was
specified for month, day, or time. | LastOperationStatus | ||
INVALID_ATTR_VALUE : String = "invalidAttrValue" [statik]
Indicates that a given attribute value is out of the expected range. | LastOperationStatus | ||
INVALID_CHAR_FOUND : String = "invalidCharFound" [statik]
Indicates that invalid Unicode value was found. | LastOperationStatus | ||
LOCALE_UNDEFINED_ERROR : String = "localeUndefinedError" [statik]
Indicates that Locale is not defined. | LastOperationStatus | ||
MEMORY_ALLOCATION_ERROR : String = "memoryAllocationError" [statik]
Indicates that memory allocation has failed. | LastOperationStatus | ||
NO_ERROR : String = "noError" [statik]
Indicates that the last operation succeeded without any errors. | LastOperationStatus | ||
NUMBER_OVERFLOW_ERROR : String = "numberOverflowError" [statik]
Indicates that an operation resulted a value that exceeds a specified
numeric type. | LastOperationStatus | ||
PARSE_ERROR : String = "parseError" [statik]
Indicates that the parsing of a number failed. | LastOperationStatus | ||
PATTERN_SYNTAX_ERROR : String = "patternSyntaxError" [statik]
Indicates that the pattern for formatting a number, date, or time is
invalid. | LastOperationStatus | ||
PLATFORM_API_FAILED : String = "platformAPIFailed" [statik]
Indicates that an underlying platform API failed for an operation. | LastOperationStatus | ||
TRUNCATED_CHAR_FOUND : String = "truncatedCharFound" [statik]
Indicates that a truncated Unicode character value was found. | LastOperationStatus | ||
UNEXPECTED_TOKEN : String = "unexpectedToken" [statik]
Indicates that an unexpected token was detected in a Locale ID string. | LastOperationStatus | ||
UNSUPPORTED_ERROR : String = "unsupportedError" [statik]
Indicates that the requested operation or option is not supported. | LastOperationStatus | ||
USING_DEFAULT_WARNING : String = "usingDefaultWarning" [statik]
Indicates that an operating system default value was used during the
most recent operation. | LastOperationStatus | ||
USING_FALLBACK_WARNING : String = "usingFallbackWarning" [statik]
Indicates that a fallback value was set during the most recent
operation. | LastOperationStatus |
BUFFER_OVERFLOW_ERROR | Sabit |
public static const BUFFER_OVERFLOW_ERROR:String = "bufferOverflowError"
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 |
Indicates that given buffer is not enough to hold the result.
İlgili API Öğeleri
ERROR_CODE_UNKNOWN | Sabit |
public static const ERROR_CODE_UNKNOWN:String = "errorCodeUnknown"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4.5s |
Çalışma Zamanı Sürümleri: | Flash Player 10.1, AIR 2.5 |
Indicates that the return error code is not known. Any non-static method or read/write properties can return this error when the operation is not successful and the return error code is not known.
İlgili API Öğeleri
ILLEGAL_ARGUMENT_ERROR | Sabit |
public static const ILLEGAL_ARGUMENT_ERROR:String = "illegalArgumentError"
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 |
Indicates that an argument passed to a method was illegal.
For example, the following code shows that an invalid argument error
status is set when CurrencyFormatter.grouping
property is
set to the invalid value "3;".
var cf:CurrencyFormatter = new CurrencyFormatter(); cf.setStyle("locale","en_US"); cf.groupingPattern = "3;"; trace(cf.lastOperationStatus); // "illegalArgumentError"
İlgili API Öğeleri
INDEX_OUT_OF_BOUNDS_ERROR | Sabit |
public static const INDEX_OUT_OF_BOUNDS_ERROR:String = "indexOutOfBoundsError"
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 |
Indicates that an iterator went out of range or an invalid parameter was specified for month, day, or time.
İlgili API Öğeleri
INVALID_ATTR_VALUE | Sabit |
public static const INVALID_ATTR_VALUE:String = "invalidAttrValue"
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 |
Indicates that a given attribute value is out of the expected range.
The following example shows that setting the
NumberFormatter.negativeNumberFormat
property to an
out-of-range value results in an invalid attribute value status.
var nf:NumberFormatter = new NumberFormatter(); nf.setStyle("locale","en_US"); nf.negativeNumberFormat = 9; nf.lastOperationStatus; // "invalidAttrValue"
İlgili API Öğeleri
INVALID_CHAR_FOUND | Sabit |
public static const INVALID_CHAR_FOUND:String = "invalidCharFound"
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 |
Indicates that invalid Unicode value was found.
İlgili API Öğeleri
LOCALE_UNDEFINED_ERROR | Sabit |
public static const LOCALE_UNDEFINED_ERROR:String = "localeUndefinedError"
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 |
Indicates that Locale
is not defined.
MEMORY_ALLOCATION_ERROR | Sabit |
public static const MEMORY_ALLOCATION_ERROR:String = "memoryAllocationError"
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 |
Indicates that memory allocation has failed.
İlgili API Öğeleri
NO_ERROR | Sabit |
public static const NO_ERROR:String = "noError"
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 |
Indicates that the last operation succeeded without any errors. This status can be returned by all constructors, non-static methods, static methods and read/write properties.
İlgili API Öğeleri
NUMBER_OVERFLOW_ERROR | Sabit |
public static const NUMBER_OVERFLOW_ERROR:String = "numberOverflowError"
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 |
Indicates that an operation resulted a value that exceeds a specified numeric type.
İlgili API Öğeleri
PARSE_ERROR | Sabit |
public static const PARSE_ERROR:String = "parseError"
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 |
Indicates that the parsing of a number failed.
This status can be returned by parsing methods of the formatter classes,
such as CurrencyFormatter.parse()
and
NumberFormatter.parseNumber()
.
For example, if the value "12abc34" is passed as the parameter to the
CurrencyFormatter.parse()
method, the method returns "NaN"
and sets the lastOperationStatus
value to
LastOperationStatus.PARSE_ERROR
.
İlgili API Öğeleri
PATTERN_SYNTAX_ERROR | Sabit |
public static const PATTERN_SYNTAX_ERROR:String = "patternSyntaxError"
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 |
Indicates that the pattern for formatting a number, date, or time is invalid. This status is set when the user's operating system does not support the given pattern.
For example, the following code shows the value of the
lastOperationStatus
property after an invalid "xx" pattern
is used for date formatting:
var df:DateTimeFormatter = new DateTimeFormatter(); df.setStyle("locale","en_US"); df.setDateTimePattern("xx"); trace(df.lastOperationStatus); // "patternSyntaxError"
İlgili API Öğeleri
PLATFORM_API_FAILED | Sabit |
public static const PLATFORM_API_FAILED:String = "platformAPIFailed"
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 |
Indicates that an underlying platform API failed for an operation.
İlgili API Öğeleri
TRUNCATED_CHAR_FOUND | Sabit |
public static const TRUNCATED_CHAR_FOUND:String = "truncatedCharFound"
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 |
Indicates that a truncated Unicode character value was found.
İlgili API Öğeleri
UNEXPECTED_TOKEN | Sabit |
public static const UNEXPECTED_TOKEN:String = "unexpectedToken"
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 |
Indicates that an unexpected token was detected in a Locale ID string.
For example, the following code shows the value of the
lastOperationStatus
property after an incomplete string is
used when requesting a locale ID.
As a result the lastOperationStatus
property is set to the
value UNEXPECTED_TOKEN
after a call to the
LocaleID.getKeysAndValues()
method.
var locale:flash.globalization.LocaleID = new flash.globalization.LocaleID("en-US@Collation"); var kav:Object = locale.getKeysAndValues(); trace(locale.lastOperationStatus); // "unexpectedToken"
İlgili API Öğeleri
UNSUPPORTED_ERROR | Sabit |
public static const UNSUPPORTED_ERROR:String = "unsupportedError"
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 |
Indicates that the requested operation or option is not supported.
This status can be returned by methods such as
DateTimeFormatter.setDateTimePattern()
and when retrieving
properties suce as Collator.ignoreCase
.
İlgili API Öğeleri
USING_DEFAULT_WARNING | Sabit |
public static const USING_DEFAULT_WARNING:String = "usingDefaultWarning"
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 |
Indicates that an operating system default value was used during the most recent operation. Class constructors can return this status.
İlgili API Öğeleri
USING_FALLBACK_WARNING | Sabit |
public static const USING_FALLBACK_WARNING:String = "usingFallbackWarning"
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 |
Indicates that a fallback value was set during the most recent
operation.
This status can be returned by constructors and methods such as
DateTimeFormatter.setDateTimeStyles()
, and when retrieving
properties such as CurrencyFormatter.groupingPattern
.
İlgili API Öğeleri
Tue Jun 12 2018, 01:09 PM Z