Packagejp.nium.net
Classpublic dynamic class Query
InheritanceQuery Inheritance flash.utils.Proxy

Query クラスは、URL のクエリパラメータを ActionScript で制御しやすい形に表現したモデルクラスです。 Query class is a model class which express the query parameter of the URL that can handle by ActionScript easily.


Example
  // Query インスタンスを作成する
  var query:Query = new Query();
  



Public Methods
 MethodDefined by
  
Query(query:* = null, readOnly:Boolean = false)
新しい Query インスタンスを作成します。 Creates a new Query object.
Query
  
clone(readOnly:Boolean = false):Query
Query インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an Query subclass.
Query
  
equals(query:Query):Boolean
指定された Query オブジェクトが、対象 Query オブジェクトと同一内容かどうかを返します。 Returns if the specified Query object has the same content with the Query object.
Query
  
toString():String
指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.
Query
Constructor detail
Query()constructor
public function Query(query:* = null, readOnly:Boolean = false)

新しい Query インスタンスを作成します。 Creates a new Query object.

Parameters
query:* (default = null)初期値となるオブジェクトです。
 
readOnly:Boolean (default = false)インスタンスを読み取り専用にするかどうかです。
Method detail
clone()method
public function clone(readOnly:Boolean = false):Query

Query インスタンスのコピーを作成して、各プロパティの値を元のプロパティの値と一致するように設定します。 Duplicates an instance of an Query subclass.

Parameters
readOnly:Boolean (default = false)インスタンスを読み取り専用にするかどうかです。 If the instance is read only or not.

Returns
Query元のオブジェクトと同じプロパティ値を含む新しい Query インスタンスです。 A new Query object that is identical to the original.
equals()method 
public function equals(query:Query):Boolean

指定された Query オブジェクトが、対象 Query オブジェクトと同一内容かどうかを返します。 Returns if the specified Query object has the same content with the Query object.

Parameters
query:Queryテストする Query オブジェクトです。 The Query object to test.

Returns
Boolean同一内容の Query オブジェクトであれば true に、それ以外の場合は false になります。 Returns true if the Query object has same content, otherwise return false.
toString()method 
public function toString():String

指定されたオブジェクトのストリング表現を返します。 Returns the string representation of the specified object.

Returns
Stringオブジェクトのストリング表現です。 A string representation of the object.