| Method | Defined by | ||
|---|---|---|---|
|
applyPattern(pattern:String):void
Applies the given pattern string to this format instance
| IDataFormatter | ||
|
format(value:*):String
Formats a value into a string
| IDataFormatter | ||
|
parse(value:String):*
Parses a string to produce a value
| IDataFormatter | ||
| applyPattern | () | method |
public function applyPattern(pattern:String):voidApplies the given pattern string to this format instance
Parameterspattern:String — - the new pattern for this format
|
| format | () | method |
public function format(value:*):StringFormats a value into a string
Parametersvalue:* — - the value to be formatted into a string.
|
String — the formatted string.
|
| parse | () | method |
public function parse(value:String):*Parses a string to produce a value
Parametersvalue:String — - A String that should be parsed
|
* — A parsed value
|