Uses of Class
org.plasma.query.model.Property

Packages that use Property
org.plasma.query.model PlasmaSDO™ License This is a community release of PlasmaSDO™, a dual-license Service Data Object (SDO) 2.1 implementation. 
org.plasma.query.visitor   
org.plasma.sdo.access.provider.common   
 

Uses of Property in org.plasma.query.model
 

Fields in org.plasma.query.model declared as Property
protected  Property Variable.property
           
protected  Property Term.property
           
 

Fields in org.plasma.query.model with type parameters of type Property
protected  java.util.List<Property> OrderBy.properties
           
protected  java.util.List<Property> GroupBy.properties
           
 

Methods in org.plasma.query.model that return Property
 Property ObjectFactory.createProperty()
          Create an instance of Property
static Property Property.forName(java.lang.String name)
          Factory method returning a property for the given name.
static Property Property.forName(java.lang.String name, Path path)
          Factory method returning a property for the given name and path.
 Property Term.getProperty()
          Gets the value of the property property.
 

Methods in org.plasma.query.model that return types with arguments of type Property
 java.util.List<Property> OrderBy.getProperties()
           
 java.util.List<Property> GroupBy.getProperties()
          Gets the value of the properties property.
 

Methods in org.plasma.query.model with parameters of type Property
 void OrderBy.addProperty(Property property)
           
 void GroupBy.addProperty(Property property)
           
static Expression Expression.between(Property prop, Literal min, Literal max)
          Returns a 6 term expression, where the given property is greater than or equal to the given 'min' literal, and is less than or equal tothe given 'max' literal.
static Expression Expression.between(Property prop, java.lang.Object min, java.lang.Object max)
          Returns a 6 term expression, where the given property is greater than or equal to the given 'min' literal, and is less than or equal tothe given 'max' literal.
static Expression Expression.eq(Property prop, Literal literal)
          Returns an expression where the given property is equal to to the given literal.
static Expression Expression.eq(Property prop, NullLiteral literal)
          Returns an expression where the given property is equal to to the given null-literal.
static Expression Expression.eq(Property prop, java.lang.Object literal)
          Returns an expression where the given property is equal to to the given literal.
static Expression Expression.exists(Property prop, Query subquery)
           
static Expression Expression.ge(Property prop, Literal literal)
          Returns an expression where the given property is greater than or equal to to the given literal.
static Expression Expression.ge(Property prop, java.lang.Object literal)
          Returns an expression where the given property is greater than or equal to to the given literal.
static Expression Expression.gt(Property prop, Literal literal)
          Returns an expression where the given property is greater than to the given literal.
static Expression Expression.gt(Property prop, java.lang.Object literal)
          Returns an expression where the given property is greated than to the given literal.
static Expression Expression.in(Property prop, Query subquery)
          Returns a subquery expression, where the given property is found within the given subquery results collection.
static Expression Expression.le(Property prop, Literal literal)
          Returns an expression where the given property is less than or equal to to the given literal.
static Expression Expression.le(Property prop, java.lang.Object literal)
          Returns an expression where the given property is less than or equal to to the given literal.
static Expression Expression.like(Property prop, Literal literal)
          Returns a wildcard expression "triad", where the given property is like the given literal, and the literal may contain any number of wildcards, the wildcard character being '*'
static Expression Expression.like(Property prop, java.lang.Object literal)
          Returns a wildcard expression "triad", where the given property is like the given literal, and the literal may contain any number of wildcards, the wildcard character being '*'
static Expression Expression.lt(Property prop, Literal literal)
          Returns an expression where the given property is less than to the given literal.
static Expression Expression.lt(Property prop, java.lang.Object literal)
          Returns an expression where the given property is less than to the given literal.
static Expression Expression.ne(Property prop, Literal literal)
          Returns an expression where the given property is not equal to to the given literal.
static Expression Expression.ne(Property prop, NullLiteral literal)
          Returns an expression where the given property is not equal to to the given null-literal.
static Expression Expression.ne(Property prop, java.lang.Object literal)
          Returns an expression where the given property is not equal to to the given literal.
static Expression Expression.notIn(Property prop, Query subquery)
          Returns a subquery expression, where the given property is not found within the given subquery results collection.
 void Variable.setProperty(Property value)
          Sets the value of the property property.
 void Term.setProperty(Property value)
          Sets the value of the property property.
 void QueryValidator.start(Property property)
           
 void AbstractQueryValidator.start(Property property)
           
 

Constructors in org.plasma.query.model with parameters of type Property
Expression(GroupOperator right, Property prop, RelationalOperator oper, Literal lit)
           
Expression(GroupOperator right, Property prop, RelationalOperator oper, Literal lit, GroupOperator left)
           
Expression(Property prop)
           
Expression(Property prop, ArithmeticOperator oper, Literal lit)
           
Expression(Property prop, Literal min, Literal max)
           
Expression(Property prop, RelationalOperator oper, Literal lit)
           
Expression(Property prop, RelationalOperator oper, Literal lit, GroupOperator left)
           
Expression(Property prop, RelationalOperator oper, NullLiteral lit)
           
Expression(Property prop, RelationalOperator oper, Variable var)
           
Expression(Property prop, SubqueryOperator oper, Query query)
           
Expression(Property prop, WildcardOperator oper, Literal lit)
           
GroupBy(Property p1)
           
GroupBy(Property[] properties)
           
GroupBy(Property p1, Property p2)
           
GroupBy(Property p1, Property p2, Property p3)
           
GroupBy(Property p1, Property p2, Property p3, Property p4)
           
OrderBy(Property p1)
           
OrderBy(Property[] properties)
           
OrderBy(Property p1, Property p2)
           
OrderBy(Property p1, Property p2, Property p3)
           
OrderBy(Property p1, Property p2, Property p3, Property p4)
           
Select(Property p1)
           
Select(Property[] properties)
           
Select(Property p1, Property p2)
           
Select(Property p1, Property p2, Property p3)
           
Select(Property p1, Property p2, Property p3, Property p4)
           
Term(Property property)
           
Variable(Property property)
           
 

Uses of Property in org.plasma.query.visitor
 

Methods in org.plasma.query.visitor with parameters of type Property
 void QueryVisitor.end(Property property)
           
 void DefaultQueryVisitor.end(Property property)
           
 void QueryVisitor.start(Property property)
           
 void DefaultQueryVisitor.start(Property property)
           
 

Uses of Property in org.plasma.sdo.access.provider.common
 

Fields in org.plasma.sdo.access.provider.common declared as Property
 Property DataComparator.PathInfo.property
           
 

Methods in org.plasma.sdo.access.provider.common with parameters of type Property
 void DataComparator.addAscending(Property property)
           
 void DataComparator.addDescending(Property property)
           
protected abstract  void TextQueryFilterAssembler.assembleSubquery(Property property, SubqueryOperator oper, Query query)
           
protected  java.lang.Object DataComparator.findEndpoint(DataObject targetObject, Property property, Path path, int pathIndex)
           
protected abstract  void TextQueryFilterAssembler.processWildcardExpression(Property property, WildcardOperator oper, Literal literal)
           
 void DataObjectHashKeyAssembler.start(Property property)
           
 void DataComparatorAssembler.start(Property property)
           
 

Constructors in org.plasma.sdo.access.provider.common with parameters of type Property
DataComparator.PathInfo(Property property, int direction)
           
 



Copyright © 2013. All Rights Reserved.