| Package | com.whirled.contrib.avrg.probe |
| Class | public class ArrayParameter |
| Inheritance | ArrayParameter Parameter |
| Property | Defined by | ||
|---|---|---|---|
![]() | name : String
The name of the parameter.
| Parameter | |
![]() | nullable : Boolean
Whether null may be passed for this parameter's value.
| Parameter | |
![]() | optional : Boolean
Whether this parameter may be omitted when calling the function.
| Parameter | |
| type : Class [read-only]
The type of the parameter.
| ArrayParameter | ||
| typeDisplay : String [read-only]
A concise string representing the type of the parameter for user interfaces.
| ArrayParameter | ||
| Method | Defined by | ||
|---|---|---|---|
|
ArrayParameter(name:String, type:Class, flags:uint = 0)
Creates a new array parameter.
| ArrayParameter | ||
![]() |
isAlpha(char:String):Boolean
[static]
Tests if a character is alphabetic.
| Parameter | |
![]() |
isDigit(char:String):Boolean
[static]
Tests if a character is a digit.
| Parameter | |
|
parse(input:String):Object
Translates a string to an object of this parameter's type.
| ArrayParameter | ||
| type | property |
type:Class [read-only]The type of the parameter.
Implementation public function get type():Class
| typeDisplay | property |
typeDisplay:String [read-only]A concise string representing the type of the parameter for user interfaces.
Implementation public function get typeDisplay():String
| ArrayParameter | () | constructor |
public function ArrayParameter(name:String, type:Class, flags:uint = 0)Creates a new array parameter.
Parametersname:String — the name of the parameter
|
|
type:Class — the type to use when parsing the values between commas
|
|
flags:uint (default = 0) — optional values passed to superclass
|
| parse | () | method |
public override function parse(input:String):ObjectTranslates a string to an object of this parameter's type.
Parametersinput:String |
Object |