Class

org.squeryl.dsl.ast

ExportedSelectElement

Related Doc: package ast

Permalink

class ExportedSelectElement extends SelectElement

SelectElement that refer to a SelectElement of an inner or outer query

Source
SelectElement.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExportedSelectElement
  2. SelectElement
  3. ExpressionNode
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ExportedSelectElement(selectElement: SelectElement)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def ?: ExportedSelectElement.this.type

    Permalink
    Definition Classes
    ExpressionNode
  5. var _inhibitedByWhen: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    ExpressionNode
  6. var _isActive: Boolean

    Permalink
    Attributes
    protected[org.squeryl]
    Definition Classes
    SelectElement
  7. def actualSelectElement: SelectElement

    Permalink

    A root level query that has nested queries (or refers to queries in an outer scope) will have SelectElements that are ExportedSelectElement, the 'actualSelectElement' points directly to the refered AST node, while 'target' refers to it indirectly (see target)

    A root level query that has nested queries (or refers to queries in an outer scope) will have SelectElements that are ExportedSelectElement, the 'actualSelectElement' points directly to the refered AST node, while 'target' refers to it indirectly (see target)

    Definition Classes
    ExportedSelectElementSelectElement
  8. def alias: String

    Permalink
    Definition Classes
    ExportedSelectElementSelectElement
  9. def aliasSegment: String

    Permalink
    Definition Classes
    ExportedSelectElementSelectElement
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def cast[A, T](typ: String)(implicit tef: TypedExpressionFactory[A, T]): TypedExpression[A, T]

    Permalink
    Definition Classes
    ExpressionNode
  12. def children: List[ExpressionNode]

    Permalink
    Definition Classes
    SelectElementExpressionNode
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def doWrite(sw: StatementWriter): Unit

    Permalink
    Definition Classes
    SelectElementExpressionNode
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. val expression: ExpressionNode

    Permalink
    Definition Classes
    ExportedSelectElementSelectElement
  18. def filterDescendants(predicate: (ExpressionNode) ⇒ Boolean): Iterable[ExpressionNode]

    Permalink
    Definition Classes
    ExpressionNode
  19. def filterDescendantsOfType[T](implicit manifest: Manifest[T]): Iterable[T]

    Permalink
    Definition Classes
    ExpressionNode
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. def id: String

    Permalink
    Definition Classes
    ExpressionNode
  24. def inhibitAliasOnSelectElementReference: Boolean

    Permalink

    Update, Insert, and Delete statements are always at the root of an AST, so they are never aliased, but then can have sub queries, ex.: update ...

    Update, Insert, and Delete statements are always at the root of an AST, so they are never aliased, but then can have sub queries, ex.: update ... where x in (subquery). Name clashes are impossible since SelectElements of query are always aliased.

    Definition Classes
    SelectElement
  25. def inhibitWhen(inhibited: Boolean): ExportedSelectElement.this.type

    Permalink
    Definition Classes
    ExpressionNode
  26. def inhibited: Boolean

    Permalink
  27. def inhibitedFlagForAstDump: String

    Permalink
    Definition Classes
    ExpressionNode
  28. def isActive: Boolean

    Permalink
    Definition Classes
    SelectElement
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  31. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. def origin: QueryableExpressionNode

    Permalink

    In the following select :
    
      select t.x from t
    
     t.x is a select element and t is it's origin
    
    Here q.z1 is a SelectElement who's origin is t
    
      select q.z1
      from
        (select t.x as z1 from t) q
    
    

    In the following select :
    
      select t.x from t
    
     t.x is a select element and t is it's origin
    
    Here q.z1 is a SelectElement who's origin is t
    
      select q.z1
      from
        (select t.x as z1 from t) q
    
    

    Definition Classes
    ExportedSelectElementSelectElement
  34. var parent: Option[ExpressionNode]

    Permalink
    Definition Classes
    ExpressionNode
  35. def parentQueryable: QueryableExpressionNode

    Permalink
    Definition Classes
    SelectElement
  36. def prepareColumnMapper(index: Int): Unit

    Permalink
    Definition Classes
    ExportedSelectElementSelectElement
  37. def prepareMapper(jdbcIndex: Int): Unit

    Permalink
    Definition Classes
    ExportedSelectElementSelectElement
  38. def realTableNamePrefix: Boolean

    Permalink
    Definition Classes
    SelectElement
  39. def resultSetMapper: ResultSetMapper

    Permalink
    Definition Classes
    ExportedSelectElementSelectElement
  40. val selectElement: SelectElement

    Permalink
  41. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  42. lazy val target: SelectElement

    Permalink

    target points to the selectElement that this ExportSelectElement refers to, who can also be an ExportSelectElement, whose target will point to its inner select element, recursively, until it becomes equal to the 'end' target, the actualSelectElement In other words : exportSelectElement.target.target.,...,.target == exportSelectElement.actualSelectElement

  43. def toString(): String

    Permalink
    Definition Classes
    ExportedSelectElementExpressionNode → AnyRef → Any
  44. def typeOfExpressionToString: String

    Permalink

    strictly for logging purposes, i.e.

    strictly for logging purposes, i.e. to display a more explicit AST

    Definition Classes
    ExportedSelectElementSelectElement
  45. def visitDescendants(visitor: (ExpressionNode, Option[ExpressionNode], Int) ⇒ Unit): Unit

    Permalink

    visitor's args are : -the visited node, -it's parent -it's depth

    visitor's args are : -the visited node, -it's parent -it's depth

    Definition Classes
    ExpressionNode
  46. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. def write(sw: StatementWriter): Unit

    Permalink
    Definition Classes
    ExpressionNode
  50. def writeToString: String

    Permalink
    Definition Classes
    ExpressionNode

Inherited from SelectElement

Inherited from ExpressionNode

Inherited from AnyRef

Inherited from Any

Ungrouped