套件 | mx.data |
類別 | public class PropertySpecifier |
繼承 | PropertySpecifier Object |
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
屬性 | 定義自 | ||
---|---|---|---|
constructor : Object
類別物件的參照或是特定物件實體的建構函數。 | Object | ||
excludes : Array [唯讀]
Get a list of properties to exclude, or null if no properties are excluded. | PropertySpecifier | ||
extraProperties : Array
A list of additional properties to include. | PropertySpecifier | ||
includeMode : int
The mode of this PropertySpecifier, determining what properties should be included. | PropertySpecifier | ||
includeSpecifierString : String [唯讀]
Returns the value for DSincludeSpec. | PropertySpecifier |
方法 | 定義自 | ||
---|---|---|---|
Constructor. | PropertySpecifier | ||
Get an array of names of excluded properties for the object. | PropertySpecifier | ||
Get an array of names of included properties for this destination. | PropertySpecifier | ||
Obtain the specifier for an associated destination. | PropertySpecifier | ||
指出物件是否有已定義的指定屬性。 | Object | ||
Check if the given property should be included based on this specifier. | PropertySpecifier | ||
指出 Object 類別的實體是否位於指定為參數的物件原型鏈中。 | Object | ||
指出指定的屬性是否存在,以及是否可列舉。 | Object | ||
為迴圈作業設定動態屬性的可用性。 | Object | ||
傳回代表此物件的字串,根據地區特定慣例進行格式化。 | Object | ||
Returns the string representation of the specified object. | PropertySpecifier | ||
會傳回指定之物件的基本值。 | Object |
常數 | 定義自 | ||
---|---|---|---|
ALL : PropertySpecifier [靜態]
Reusable instance of a PropertySpecifier to include all properties of an item. | PropertySpecifier | ||
DEFAULT : PropertySpecifier [靜態]
Reusable instance of a default PropertySpecifier. | PropertySpecifier | ||
EMPTY : PropertySpecifier [靜態]
Reusable instance of a PropertySpecifier to include no properties. | PropertySpecifier | ||
INCLUDE_ALL : int = 1 [靜態]
Special value for a PropertySpecifier mode to include all properties of an item. | PropertySpecifier | ||
INCLUDE_DEFAULT : int = 0 [靜態]
Special value for a PropertySpecifier mode to include properties based on the default configuration. | PropertySpecifier | ||
INCLUDE_DEFAULT_PLUS_LIST : int = 2 [靜態]
Special value for a PropertySpecifier mode to include properties based on the default configuration,
as well as additional properties specified in a list. | PropertySpecifier | ||
INCLUDE_LIST : int = 3 [靜態]
Special value for a PropertySpecifier mode to include only properties specified in a list. | PropertySpecifier |
excludes | 屬性 |
extraProperties | 屬性 |
includeMode | 屬性 |
includeMode:int
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
The mode of this PropertySpecifier, determining what properties should be included.
實作
public function get includeMode():int
public function set includeMode(value:int):void
includeSpecifierString | 屬性 |
PropertySpecifier | () | 建構函式 |
public function PropertySpecifier(dest:ConcreteDataService, mode:int, extra:Array)
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Constructor.
參數dest:ConcreteDataService — destination for which this property specifier should apply.
| |
mode:int — mode of property specifier. Must be one of these values:
0 (INCLUDE_DEFAULT)
1 (INCLUDE_ALL)
2 (INCLUDE_DEFAULT_PLUS_LIST)
3 (INCLUDE_LIST)
| |
extra:Array — array of additional property names to include in mode 2 and 3.
|
getExcluded | () | 方法 |
public function getExcluded(item:Object):Array
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Get an array of names of excluded properties for the object.
參數
item:Object — the item instance.
|
Array — an array of excluded property names or null if no properties should be excluded.
|
getIncluded | () | 方法 |
public function getIncluded(destination:String):Array
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Get an array of names of included properties for this destination.
參數
destination:String — the destination name.
|
Array — an array of included property names.
|
getSubSpecifier | () | 方法 |
public function getSubSpecifier(item:Object, propName:String):PropertySpecifier
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Obtain the specifier for an associated destination.
參數
item:Object — item instance.
| |
propName:String — property name for the association.
|
PropertySpecifier — the PropertySpecifier instance to use when fetching data for the association.
|
includeProperty | () | 方法 |
public function includeProperty(propName:String):Boolean
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Check if the given property should be included based on this specifier.
參數
propName:String — name of property.
|
Boolean — true if property should be included in the result.
|
toString | () | 方法 |
public function toString():String
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Returns the string representation of the specified object.
Note: Methods of the Object class are dynamically created on Object's prototype. To redefine this method in a subclass of Object, do not use the override
keyword. For example, a subclass of Object implements function toString():String
instead of using an override of the base class.
String — A string representation of the object.
|
ALL | 常數 |
public static const ALL:PropertySpecifier
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Reusable instance of a PropertySpecifier to include all properties of an item.
DEFAULT | 常數 |
public static const DEFAULT:PropertySpecifier
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Reusable instance of a default PropertySpecifier.
EMPTY | 常數 |
public static const EMPTY:PropertySpecifier
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Reusable instance of a PropertySpecifier to include no properties.
INCLUDE_ALL | 常數 |
public static const INCLUDE_ALL:int = 1
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Special value for a PropertySpecifier mode to include all properties of an item.
INCLUDE_DEFAULT | 常數 |
public static const INCLUDE_DEFAULT:int = 0
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Special value for a PropertySpecifier mode to include properties based on the default configuration.
INCLUDE_DEFAULT_PLUS_LIST | 常數 |
public static const INCLUDE_DEFAULT_PLUS_LIST:int = 2
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Special value for a PropertySpecifier mode to include properties based on the default configuration, as well as additional properties specified in a list.
INCLUDE_LIST | 常數 |
public static const INCLUDE_LIST:int = 3
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Special value for a PropertySpecifier mode to include only properties specified in a list.
Tue Jun 12 2018, 03:47 PM Z