Paquete | mx.data |
Clase | public class PropertySpecifier |
Herencia | PropertySpecifier Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
excludes : Array [solo lectura]
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 [solo lectura]
Returns the value for DSincludeSpec. | PropertySpecifier |
Método | Definido por | ||
---|---|---|---|
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 | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Check if the given property should be included based on this specifier. | PropertySpecifier | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Returns the string representation of the specified object. | PropertySpecifier | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
ALL : PropertySpecifier [estática]
Reusable instance of a PropertySpecifier to include all properties of an item. | PropertySpecifier | ||
DEFAULT : PropertySpecifier [estática]
Reusable instance of a default PropertySpecifier. | PropertySpecifier | ||
EMPTY : PropertySpecifier [estática]
Reusable instance of a PropertySpecifier to include no properties. | PropertySpecifier | ||
INCLUDE_ALL : int = 1 [estática]
Special value for a PropertySpecifier mode to include all properties of an item. | PropertySpecifier | ||
INCLUDE_DEFAULT : int = 0 [estática]
Special value for a PropertySpecifier mode to include properties based on the default configuration. | PropertySpecifier | ||
INCLUDE_DEFAULT_PLUS_LIST : int = 2 [estática]
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 [estática]
Special value for a PropertySpecifier mode to include only properties specified in a list. | PropertySpecifier |
excludes | propiedad |
excludes:Array
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Get a list of properties to exclude, or null if no properties are excluded.
Implementación
public function get excludes():Array
extraProperties | propiedad |
extraProperties:Array
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
A list of additional properties to include.
Implementación
public function get extraProperties():Array
public function set extraProperties(value:Array):void
includeMode | propiedad |
includeMode:int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The mode of this PropertySpecifier, determining what properties should be included.
Implementación
public function get includeMode():int
public function set includeMode(value:int):void
includeSpecifierString | propiedad |
includeSpecifierString:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the value for DSincludeSpec.
Implementación
public function get includeSpecifierString():String
PropertySpecifier | () | Información sobre |
public function PropertySpecifier(dest:ConcreteDataService, mode:int, extra:Array)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Constructor.
Parámetrosdest: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 | () | método |
public function getExcluded(item:Object):Array
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Get an array of names of excluded properties for the object.
Parámetros
item:Object — the item instance.
|
Array — an array of excluded property names or null if no properties should be excluded.
|
getIncluded | () | método |
public function getIncluded(destination:String):Array
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Get an array of names of included properties for this destination.
Parámetros
destination:String — the destination name.
|
Array — an array of included property names.
|
getSubSpecifier | () | método |
public function getSubSpecifier(item:Object, propName:String):PropertySpecifier
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Obtain the specifier for an associated destination.
Parámetros
item:Object — item instance.
| |
propName:String — property name for the association.
|
PropertySpecifier — the PropertySpecifier instance to use when fetching data for the association.
|
includeProperty | () | método |
public function includeProperty(propName:String):Boolean
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Check if the given property should be included based on this specifier.
Parámetros
propName:String — name of property.
|
Boolean — true if property should be included in the result.
|
toString | () | método |
public function toString():String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | 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
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | 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
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Reusable instance of a default PropertySpecifier.
EMPTY | Constante |
public static const EMPTY:PropertySpecifier
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | 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
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | 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
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | 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
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | 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
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Special value for a PropertySpecifier mode to include only properties specified in a list.
Tue Jun 12 2018, 02:12 PM Z