Packagecom.whirled.contrib.avrg.probe
Classpublic class CallbackParameter
InheritanceCallbackParameter Inheritance Parameter

Parameter type to use when a Function is expected. This is an automated type that has no parsing. It is treated specially by the framework that uses it.



Public Properties
 PropertyDefined by
 Inheritedname : String
The name of the parameter.
Parameter
 Inheritednullable : Boolean
Whether null may be passed for this parameter's value.
Parameter
 Inheritedoptional : Boolean
Whether this parameter may be omitted when calling the function.
Parameter
 Inheritedtype : Class
The type of the parameter.
Parameter
  typeDisplay : String
[read-only] A concise string representing the type of the parameter for user interfaces.
CallbackParameter
Protected Properties
 PropertyDefined by
 Inherited_flags : uint
Parameter
 Inherited_name : String
Parameter
 Inherited_type : Class
Parameter
Public Methods
 MethodDefined by
  
CallbackParameter(name:String, flags:uint = 0)
Creates a new callback parameter.
CallbackParameter
 Inherited
isAlpha(char:String):Boolean
[static] Tests if a character is alphabetic.
Parameter
 Inherited
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.
CallbackParameter
Public Constants
 ConstantDefined by
 InheritedNULLABLE : int = 2
[static] Flag value for parameters that may take null.
Parameter
 InheritedOPTIONAL : int = 1
[static] Flag value for parameters that are optional.
Parameter
Property detail
typeDisplayproperty
typeDisplay:String  [read-only]

A concise string representing the type of the parameter for user interfaces.

Implementation
    public function get typeDisplay():String
Constructor detail
CallbackParameter()constructor
public function CallbackParameter(name:String, flags:uint = 0)

Creates a new callback parameter.

Parameters
name:String — the name of the parameter
 
flags:uint (default = 0) — optional values passed to superclass
Method detail
parse()method
public override function parse(input:String):Object

Translates a string to an object of this parameter's type.

Parameters
input:String

Returns
Object