| Property | Defined by | ||
|---|---|---|---|
| post : Array
The Array representation of all "post" values.
| Variables | ||
| pre : Array
The Array representation of all "pre" values.
| Variables | ||
| sort : Boolean = true
The sort flag.
| Variables | ||
| URIencode : Boolean
The URIencode flag.
| Variables | ||
| Method | Defined by | ||
|---|---|---|---|
|
Variables(source:String = null, pre:Array = null, post:Array = null)
Creates a new Variables instance.
| Variables | ||
|
decode(source:String):void
Decodes the variable with the specified String source.
| Variables | ||
|
join(... variables):void
Joins all passed-in Variables objects.
| Variables | ||
|
toString():String
Returns the String representation of the object.
| Variables | ||
|
toURLVariables():URLVariables
Returns the URLVariables representation of the object.
| Variables | ||
| post | property |
public var post:ArrayThe Array representation of all "post" values.
| pre | property |
public var pre:ArrayThe Array representation of all "pre" values.
| sort | property |
public var sort:Boolean = trueThe sort flag.
| URIencode | property |
public var URIencode:BooleanThe URIencode flag.
| Variables | () | constructor |
public function Variables(source:String = null, pre:Array = null, post:Array = null)Creates a new Variables instance.
Parameterssource:String (default = null) — The source name value.
|
|
pre:Array (default = null) — The Array representation of all "pre" values.
|
|
post:Array (default = null) — The Array representation of all "post" values.
|
| decode | () | method |
public function decode(source:String):voidDecodes the variable with the specified String source.
Parameterssource:String |
| join | () | method |
public function join(... variables):voidJoins all passed-in Variables objects.
Parameters... variables — The collection of all variables arguments to join.
|
| toString | () | method |
public function toString():StringReturns the String representation of the object.
ReturnsString — the String representation of the object.
|
| toURLVariables | () | method |
public function toURLVariables():URLVariablesReturns the URLVariables representation of the object.
ReturnsURLVariables — the URLVariables representation of the object.
|