包 | 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 [只读]
获取要排除的属性列表,如果没有排除任何属性,则为 null。 | PropertySpecifier | ||
extraProperties : Array
要包含的其它属性的列表。 | PropertySpecifier | ||
includeMode : int
此 PropertySpecifier 的模式,确定应该包含哪些属性。 | PropertySpecifier | ||
includeSpecifierString : String [只读]
返回 DSincludeSpec 的值。 | PropertySpecifier |
公共方法
方法 | 由以下参数定义 | ||
---|---|---|---|
构造函数。 | PropertySpecifier | ||
获取对象的已排除属性的名称数组。 | PropertySpecifier | ||
获取此目标的包含属性的名称数组。 | PropertySpecifier | ||
获取关联目标的说明符。 | PropertySpecifier | ||
表示对象是否已经定义了指定的属性。 | Object | ||
检查是否应该根据该说明符包含给定属性。 | PropertySpecifier | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
设置循环操作动态属性的可用性。 | Object | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | PropertySpecifier | ||
返回指定对象的原始值。 | Object |
公共常量
常量 | 由以下参数定义 | ||
---|---|---|---|
ALL : PropertySpecifier [静态]
要包含某个项的所有属性的 PropertySpecifier 的可重用实例。 | PropertySpecifier | ||
DEFAULT : PropertySpecifier [静态]
默认 PropertySpecifier 的可重用实例。 | PropertySpecifier | ||
EMPTY : PropertySpecifier [静态]
不包含任何属性的 PropertySpecifier 的可重用实例。 | PropertySpecifier | ||
INCLUDE_ALL : int = 1 [静态]
要包含某个项的所有属性的 PropertySpecifier 模式的特殊值。 | PropertySpecifier | ||
INCLUDE_DEFAULT : int = 0 [静态]
要包含基于默认配置的属性的 PropertySpecifier 模式的特殊值。 | PropertySpecifier | ||
INCLUDE_DEFAULT_PLUS_LIST : int = 2 [静态]
要包含基于默认配置的属性和列表中指定的其它属性的 PropertySpecifier 模式的特殊值。 | PropertySpecifier | ||
INCLUDE_LIST : int = 3 [静态]
要仅包含列表中指定的属性的 PropertySpecifier 模式的特殊值。 | PropertySpecifier |
属性详细信息
excludes | 属性 |
extraProperties | 属性 |
includeMode | 属性 |
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 |
构造函数。
参数dest:ConcreteDataService — 应该应用此属性说明符的目标。
| |
mode:int — 属性说明符的模式。必须是以下值之一:0 (INCLUDE_DEFAULT) 1 (INCLUDE_ALL) 2 (INCLUDE_DEFAULT_PLUS_LIST) 3 (INCLUDE_LIST)
| |
extra:Array — 模式 2 和 3 中包含的其它属性名称的数组。
|
方法详细信息
getExcluded | () | 方法 |
getIncluded | () | 方法 |
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 |
获取关联目标的说明符。
参数
item:Object — 项实例。
| |
propName:String — 关联的属性名称。
|
PropertySpecifier — 访存关联的数据时使用的 PropertySpecifier 实例。
|
includeProperty | () | 方法 |
toString | () | 方法 |
public function toString():String
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
返回指定对象的字符串表示形式。
注意:Object 类的方法是在 Object 的原型上动态创建的。要在 Object 的子类中重新定义该方法,请不要使用 override
关键字。例如,Object 的一个子类实现 function toString():String
而不使用基类覆盖。
String — 对象的字符串表示形式。
|
常量详细信息
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 |
要包含某个项的所有属性的 PropertySpecifier 的可重用实例。
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 |
默认 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 |
不包含任何属性的 PropertySpecifier 的可重用实例。
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 |
要包含某个项的所有属性的 PropertySpecifier 模式的特殊值。
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 |
要包含基于默认配置的属性的 PropertySpecifier 模式的特殊值。
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 |
要包含基于默认配置的属性和列表中指定的其它属性的 PropertySpecifier 模式的特殊值。
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 |
要仅包含列表中指定的属性的 PropertySpecifier 模式的特殊值。
Tue Jun 12 2018, 11:04 AM Z