| Package | com.whirled.contrib.avrg.probe |
| Class | public class ObjectParameter |
| Inheritance | ObjectParameter 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
The type of the parameter.
| Parameter | |
| typeDisplay : String [read-only]
A concise string representing the type of the parameter for user interfaces.
| ObjectParameter | ||
| Property | Defined by | ||
|---|---|---|---|
![]() | _flags : uint | Parameter | |
![]() | _name : String | Parameter | |
![]() | _type : Class | Parameter | |
| _underlying : Class | ObjectParameter | ||
| Method | Defined by | ||
|---|---|---|---|
|
ObjectParameter(name:String, flags:uint = 0)
Creates a new object parameter.
| ObjectParameter | ||
![]() |
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.
| ObjectParameter | ||
| typeDisplay | property |
typeDisplay:String [read-only]A concise string representing the type of the parameter for user interfaces.
Implementation public function get typeDisplay():String
| _underlying | property |
protected var _underlying:Class
| ObjectParameter | () | constructor |
public function ObjectParameter(name:String, flags:uint = 0)Creates a new object parameter.
Parametersname:String — the name of the parameter
|
|
flags:uint (default = 0) — optional flags to pass to the superclass
|
| parse | () | method |
public override function parse(input:String):ObjectTranslates a string to an object of this parameter's type.
Parametersinput:String |
Object |