STuple12

org.squeryl.dsl.boilerplate.STuple12
class STuple12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12](n: List[SelectElement], m: Array[OutMapper[_]]) extends STuple11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11], Product12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12]

Attributes

Source
STuple.scala
Graph
Supertypes
trait Product12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12]
class STuple11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11]
trait Product11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11]
class STuple10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]
trait Product10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]
class STuple9[T1, T2, T3, T4, T5, T6, T7, T8, T9]
trait Product9[T1, T2, T3, T4, T5, T6, T7, T8, T9]
class STuple8[T1, T2, T3, T4, T5, T6, T7, T8]
trait Product8[T1, T2, T3, T4, T5, T6, T7, T8]
class STuple7[T1, T2, T3, T4, T5, T6, T7]
trait Product7[T1, T2, T3, T4, T5, T6, T7]
class STuple6[T1, T2, T3, T4, T5, T6]
trait Product6[T1, T2, T3, T4, T5, T6]
class STuple5[T1, T2, T3, T4, T5]
trait Product5[T1, T2, T3, T4, T5]
class STuple4[T1, T2, T3, T4]
trait Product4[T1, T2, T3, T4]
class STuple3[T1, T2, T3]
trait Product3[T1, T2, T3]
class STuple2[T1, T2]
trait Product2[T1, T2]
class STuple1[T1]
class SampleTuple
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Known subtypes
class STuple13[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13]
class STuple14[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14]
class STuple15[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15]
class STuple16[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16]
class STuple17[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17]
class STuple18[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18]
class STuple19[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19]
class STuple20[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20]
class STuple21[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21]
class STuple22[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22]
Show all

Members list

Value members

Concrete methods

def _12: T12

Attributes

Source
STuple.scala

Inherited methods

def _1: T1

Attributes

Inherited from:
STuple1
Source
SampleTuple.scala
def _10: T10

Attributes

Inherited from:
STuple10
Source
STuple.scala
def _11: T11

Attributes

Inherited from:
STuple11
Source
STuple.scala
def _2: T2

Attributes

Inherited from:
STuple2
Source
STuple.scala
def _3: T3

Attributes

Inherited from:
STuple3
Source
STuple.scala
def _4: T4

Attributes

Inherited from:
STuple4
Source
STuple.scala
def _5: T5

Attributes

Inherited from:
STuple5
Source
STuple.scala
def _6: T6

Attributes

Inherited from:
STuple6
Source
STuple.scala
def _7: T7

Attributes

Inherited from:
STuple7
Source
STuple.scala
def _8: T8

Attributes

Inherited from:
STuple8
Source
STuple.scala
def _9: T9

Attributes

Inherited from:
STuple9
Source
STuple.scala
override def canEqual(a: Any): Boolean

Attributes

Definition Classes
SampleTuple -> Equals
Inherited from:
SampleTuple
Source
SampleTuple.scala
override def equals(a: Any): Boolean

Compares the receiver object (this) with the argument object (that) for equivalence.

Compares the receiver object (this) with the argument object (that) for equivalence.

Any implementation of this method should be an equivalence relation:

  • It is reflexive: for any instance x of type Any, x.equals(x) should return true.
  • It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any instances x, y, and z of type Any if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode to ensure that objects which are "equal" (o1.equals(o2) returns true) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)).

Value parameters

that

the object to compare against this object for equality.

Attributes

Returns

true if the receiver object is equivalent to the argument; false otherwise.

Definition Classes
SampleTuple -> Equals -> Any
Inherited from:
SampleTuple
Source
SampleTuple.scala
override def productArity: Int

Attributes

Definition Classes
Product12 -> Product
Inherited from:
Product12
override def productElement(n: Int): Any

Attributes

Definition Classes
Product12 -> Product
Inherited from:
Product12
def productElementName(n: Int): String

Attributes

Inherited from:
Product
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def productPrefix: String

Attributes

Inherited from:
Product

Inherited fields

val outMappers: Array[OutMapper[_]]

Attributes

Inherited from:
SampleTuple
Source
SampleTuple.scala
val outNodes: List[SelectElement]

Attributes

Inherited from:
SampleTuple
Source
SampleTuple.scala