패키지 | 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:17 PM Z