SampleTuple

org.squeryl.dsl.boilerplate.SampleTuple
See theSampleTuple companion object
class SampleTuple(val outNodes: List[SelectElement], val outMappers: Array[OutMapper[_]]) extends Product

Attributes

Companion
object
Source
SampleTuple.scala
Graph
Supertypes
trait Product
trait Equals
class Object
trait Matchable
class Any
Known subtypes
class STuple1[T1]
class STuple2[T1, T2]
class STuple3[T1, T2, T3]
class STuple4[T1, T2, T3, T4]
class STuple5[T1, T2, T3, T4, T5]
class STuple6[T1, T2, T3, T4, T5, T6]
class STuple7[T1, T2, T3, T4, T5, T6, T7]
class STuple8[T1, T2, T3, T4, T5, T6, T7, T8]
class STuple9[T1, T2, T3, T4, T5, T6, T7, T8, T9]
class STuple10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]
class STuple11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11]
class STuple12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12]
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

override def canEqual(a: Any): Boolean

Attributes

Definition Classes
Equals
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
Equals -> Any
Source
SampleTuple.scala
override def productArity: Int

Attributes

Definition Classes
Product
Source
SampleTuple.scala
override def productElement(n: Int): Any

Attributes

Definition Classes
Product
Source
SampleTuple.scala

Inherited methods

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

Concrete fields

val outMappers: Array[OutMapper[_]]

Attributes

Source
SampleTuple.scala
val outNodes: List[SelectElement]

Attributes

Source
SampleTuple.scala