Packagecom.whirled.contrib.avrg.probe
Classpublic class PointParameter
InheritancePointParameter Inheritance Parameter

Parameter type to be used when a Point is expected. Parsing is very simple and uses the text before the first comma as the x value and after the comma as the y value.



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
 InheritedtypeDisplay : String
A concise string representing the type of the parameter for user interfaces.
Parameter
Protected Properties
 PropertyDefined by
 Inherited_flags : uint
Parameter
 Inherited_name : String
Parameter
 Inherited_type : Class
Parameter
Public Methods
 MethodDefined by
  
PointParameter(name:String, flags:uint = 0)
Creates a new point parameter.
PointParameter
 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.
PointParameter
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
Constructor detail
PointParameter()constructor
public function PointParameter(name:String, flags:uint = 0)

Creates a new point parameter.

Parameters
name:String — the name of the parameter
 
flags:uint (default = 0) — optional flags to pass to the 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