Pakket | mx.data |
Klasse | public class PropertySpecifier |
Overerving | PropertySpecifier Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
excludes : Array [alleen-lezen]
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 [alleen-lezen]
Returns the value for DSincludeSpec. | PropertySpecifier |
Methode | Gedefinieerd door | ||
---|---|---|---|
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 | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Check if the given property should be included based on this specifier. | PropertySpecifier | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Returns the string representation of the specified object. | PropertySpecifier | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
ALL : PropertySpecifier [statisch]
Reusable instance of a PropertySpecifier to include all properties of an item. | PropertySpecifier | ||
DEFAULT : PropertySpecifier [statisch]
Reusable instance of a default PropertySpecifier. | PropertySpecifier | ||
EMPTY : PropertySpecifier [statisch]
Reusable instance of a PropertySpecifier to include no properties. | PropertySpecifier | ||
INCLUDE_ALL : int = 1 [statisch]
Special value for a PropertySpecifier mode to include all properties of an item. | PropertySpecifier | ||
INCLUDE_DEFAULT : int = 0 [statisch]
Special value for a PropertySpecifier mode to include properties based on the default configuration. | PropertySpecifier | ||
INCLUDE_DEFAULT_PLUS_LIST : int = 2 [statisch]
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 [statisch]
Special value for a PropertySpecifier mode to include only properties specified in a list. | PropertySpecifier |
excludes | eigenschap |
excludes:Array
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Get a list of properties to exclude, or null if no properties are excluded.
Implementatie
public function get excludes():Array
extraProperties | eigenschap |
extraProperties:Array
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
A list of additional properties to include.
Implementatie
public function get extraProperties():Array
public function set extraProperties(value:Array):void
includeMode | eigenschap |
includeMode:int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The mode of this PropertySpecifier, determining what properties should be included.
Implementatie
public function get includeMode():int
public function set includeMode(value:int):void
includeSpecifierString | eigenschap |
PropertySpecifier | () | Constructor |
public function PropertySpecifier(dest:ConcreteDataService, mode:int, extra:Array)
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
Parametersdest: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 | () | methode |
public function getExcluded(item:Object):Array
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Get an array of names of excluded properties for the object.
Parameters
item:Object — the item instance.
|
Array — an array of excluded property names or null if no properties should be excluded.
|
getIncluded | () | methode |
public function getIncluded(destination:String):Array
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Get an array of names of included properties for this destination.
Parameters
destination:String — the destination name.
|
Array — an array of included property names.
|
getSubSpecifier | () | methode |
public function getSubSpecifier(item:Object, propName:String):PropertySpecifier
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Obtain the specifier for an associated destination.
Parameters
item:Object — item instance.
| |
propName:String — property name for the association.
|
PropertySpecifier — the PropertySpecifier instance to use when fetching data for the association.
|
includeProperty | () | methode |
public function includeProperty(propName:String):Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Check if the given property should be included based on this specifier.
Parameters
propName:String — name of property.
|
Boolean — true if property should be included in the result.
|
toString | () | methode |
public function toString():String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | 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 | Constante |
public static const ALL:PropertySpecifier
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Reusable instance of a PropertySpecifier to include all properties of an item.
DEFAULT | Constante |
public static const DEFAULT:PropertySpecifier
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Reusable instance of a default PropertySpecifier.
EMPTY | Constante |
public static const EMPTY:PropertySpecifier
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Reusable instance of a PropertySpecifier to include no properties.
INCLUDE_ALL | Constante |
public static const INCLUDE_ALL:int = 1
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Special value for a PropertySpecifier mode to include all properties of an item.
INCLUDE_DEFAULT | Constante |
public static const INCLUDE_DEFAULT:int = 0
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Special value for a PropertySpecifier mode to include properties based on the default configuration.
INCLUDE_DEFAULT_PLUS_LIST | Constante |
public static const INCLUDE_DEFAULT_PLUS_LIST:int = 2
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | 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 | Constante |
public static const INCLUDE_LIST:int = 3
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Special value for a PropertySpecifier mode to include only properties specified in a list.
Wed Jun 13 2018, 11:42 AM Z