Package | com.adobe.ep.ux.content.model.search |
Class | public class Statement |
Inheritance | Statement Object |
Subclasses | ComplexStatement, SimpleStatement |
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
joinOperator : String
Join Operation through which this statement is joined to previous statement in statement list. | Statement | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object |
Method | Defined By | ||
---|---|---|---|
Constructor. | Statement | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object |
Constant | Defined By | ||
---|---|---|---|
JOIN_OPERATOR_AND : String = "AND" [static]
This special value represents the JOIN operator AND. | Statement | ||
JOIN_OPERATOR_AND_NOT : String = "AND_NOT" [static]
This special value represents the JOIN operator AND_NOT
| Statement | ||
JOIN_OPERATOR_OR : String = "OR" [static]
This special value represents the JOIN operator OR. | Statement | ||
JOIN_OPERATOR_OR_NOT : String = "OR_NOT" [static]
This special value represents the JOIN operator OR_NOT
| Statement | ||
OPERATOR_CONTAINS : String = "CONTAINS" [static]
This special value represents the CONTAINS operator. | Statement | ||
OPERATOR_ENDS_WITH : String = "ENDS_WITH" [static]
This special value represents the ENDS WITH operator. | Statement | ||
OPERATOR_EQUALS : String = "EQUALS" [static]
This special value represents the EQUALS operator. | Statement | ||
OPERATOR_FULL_TEXT_SEARCH : String = "FULL_TEXT_SEARCH" [static]
This special value represents the FULL TEXT SEARCH operator. | Statement | ||
OPERATOR_GREATER_THAN : String = "GREATER_THAN" [static]
This special value represents the GREATER THAN operator. | Statement | ||
OPERATOR_GREATER_THAN_EQUALS : String = "GREATER_THAN_EQUALS" [static]
This special value represents the GREATER THAN OR EQUALS TO operator. | Statement | ||
OPERATOR_LESS_THAN : String = "LESS_THAN" [static]
This special value represents the LESS THAN operator. | Statement | ||
OPERATOR_LESS_THAN_EQUALS : String = "LESS_THAN_EQUALS" [static]
This special value represents the LESS THAN OR EQUALS TO operator. | Statement | ||
OPERATOR_LIKE : String = "LIKE" [static]
This special value represents the LIKE operator. | Statement | ||
OPERATOR_NOT_EQUALS : String = "NOT_EQUALS" [static]
This special value represents the NOT EQUALS operator. | Statement | ||
OPERATOR_NOT_NULL : String = "NOT_NULL" [static]
This special value represents the NOT NULL CHECK operator. | Statement | ||
OPERATOR_NULL : String = "NULL" [static]
This special value represents the NULL CHECK operator. | Statement | ||
OPERATOR_STARTS_WITH : String = "STARTS_WITH" [static]
This special value represents the STARTS WITH operator. | Statement |
joinOperator | property |
joinOperator:String
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
Join Operation through which this statement is joined to previous statement in statement list.
Implementation
public function get joinOperator():String
public function set joinOperator(value:String):void
Statement | () | Constructor |
public function Statement()
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
Constructor.
JOIN_OPERATOR_AND | Constant |
public static const JOIN_OPERATOR_AND:String = "AND"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the JOIN operator AND. It is used to join two statements
JOIN_OPERATOR_AND_NOT | Constant |
public static const JOIN_OPERATOR_AND_NOT:String = "AND_NOT"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the JOIN operator AND_NOT
JOIN_OPERATOR_OR | Constant |
public static const JOIN_OPERATOR_OR:String = "OR"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the JOIN operator OR. It is used to join two statements
JOIN_OPERATOR_OR_NOT | Constant |
public static const JOIN_OPERATOR_OR_NOT:String = "OR_NOT"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the JOIN operator OR_NOT
OPERATOR_CONTAINS | Constant |
public static const OPERATOR_CONTAINS:String = "CONTAINS"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the CONTAINS operator. It is valid for text operands
OPERATOR_ENDS_WITH | Constant |
public static const OPERATOR_ENDS_WITH:String = "ENDS_WITH"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the ENDS WITH operator. It is valid for text operands
OPERATOR_EQUALS | Constant |
public static const OPERATOR_EQUALS:String = "EQUALS"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the EQUALS operator. It is valid for all data types
OPERATOR_FULL_TEXT_SEARCH | Constant |
public static const OPERATOR_FULL_TEXT_SEARCH:String = "FULL_TEXT_SEARCH"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the FULL TEXT SEARCH operator. It searches across all attributes of the entity
OPERATOR_GREATER_THAN | Constant |
public static const OPERATOR_GREATER_THAN:String = "GREATER_THAN"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the GREATER THAN operator. It is valid for numeral and date operands
OPERATOR_GREATER_THAN_EQUALS | Constant |
public static const OPERATOR_GREATER_THAN_EQUALS:String = "GREATER_THAN_EQUALS"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the GREATER THAN OR EQUALS TO operator. It is valid for numeral and date operands
OPERATOR_LESS_THAN | Constant |
public static const OPERATOR_LESS_THAN:String = "LESS_THAN"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the LESS THAN operator. It is valid for numeral and date operands
OPERATOR_LESS_THAN_EQUALS | Constant |
public static const OPERATOR_LESS_THAN_EQUALS:String = "LESS_THAN_EQUALS"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the LESS THAN OR EQUALS TO operator. It is valid for numeral and date operands
OPERATOR_LIKE | Constant |
public static const OPERATOR_LIKE:String = "LIKE"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the LIKE operator. It is valid for text wild characters
OPERATOR_NOT_EQUALS | Constant |
public static const OPERATOR_NOT_EQUALS:String = "NOT_EQUALS"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the NOT EQUALS operator. It is valid for all data types
OPERATOR_NOT_NULL | Constant |
public static const OPERATOR_NOT_NULL:String = "NOT_NULL"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the NOT NULL CHECK operator. The attribute value is ignored in this case.
OPERATOR_NULL | Constant |
public static const OPERATOR_NULL:String = "NULL"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the NULL CHECK operator. The attribute value is ignored in this case.
OPERATOR_STARTS_WITH | Constant |
public static const OPERATOR_STARTS_WITH:String = "STARTS_WITH"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Runtime Versions: | Flash Player 10.2, AIR (unsupported) |
This special value represents the STARTS WITH operator. It is valid for text operands
Mon Nov 28 2011, 06:48 AM -08:00