Uses of Class
net.esper.eql.core.PropertyResolutionDescriptor

Packages that use PropertyResolutionDescriptor
net.esper.eql.core Contains EQL statement specification classes define the constructs that make up an EQL statement, such as the list of items in the select clause, the insert-into stream name and property names etc. 
net.esper.eql.expression This package contains the EQL expression nodes that represent all expressions such as used in select clauses, group-by and having clauses, or order-by clauses 
 

Uses of PropertyResolutionDescriptor in net.esper.eql.core
 

Methods in net.esper.eql.core that return PropertyResolutionDescriptor
 PropertyResolutionDescriptor StreamTypeServiceImpl.resolveByPropertyName(java.lang.String propertyName)
           
 PropertyResolutionDescriptor StreamTypeService.resolveByPropertyName(java.lang.String propertyName)
          Returns the offset of the stream and the type of the property for the given property name, by looking through the types offered and matching up.
 PropertyResolutionDescriptor StreamTypeServiceImpl.resolveByStreamAndPropName(java.lang.String streamName, java.lang.String propertyName)
           
 PropertyResolutionDescriptor StreamTypeService.resolveByStreamAndPropName(java.lang.String streamName, java.lang.String propertyName)
          Returns the offset of the stream and the type of the property for the given property name, by using the specified stream name to resolve the property.
 

Uses of PropertyResolutionDescriptor in net.esper.eql.expression
 

Methods in net.esper.eql.expression that return types with arguments of type PropertyResolutionDescriptor
protected static Pair<PropertyResolutionDescriptor,java.lang.String> ExprIdentNode.getTypeFromStream(StreamTypeService streamTypeService, java.lang.String unresolvedPropertyName, java.lang.String streamOrPropertyName)
          Determine stream id and property type given an unresolved property name and a stream name that may also be part of the property name.