Class

io.getquill

JdbcContext

Related Doc: package getquill

Permalink

class JdbcContext[D <: SqlIdiom, N <: NamingStrategy] extends SqlContext[D, N, ResultSet, BindedStatementBuilder[PreparedStatement]] with JdbcEncoders with JdbcDecoders

Linear Supertypes
JdbcDecoders, JdbcEncoders, SqlContext[D, N, ResultSet, BindedStatementBuilder[PreparedStatement]], SqlDsl, Context[ResultSet, BindedStatementBuilder[PreparedStatement]], CoreDsl, QuotationDsl, QueryDsl, OrdDsl, InfixDsl, Closeable, AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JdbcContext
  2. JdbcDecoders
  3. JdbcEncoders
  4. SqlContext
  5. SqlDsl
  6. Context
  7. CoreDsl
  8. QuotationDsl
  9. QueryDsl
  10. OrdDsl
  11. InfixDsl
  12. Closeable
  13. AutoCloseable
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JdbcContext(configPrefix: String)

    Permalink
  2. new JdbcContext(config: Config)

    Permalink
  3. new JdbcContext(config: JdbcContextConfig)

    Permalink
  4. new JdbcContext(dataSource: DataSource with Closeable)

    Permalink

Type Members

  1. sealed trait Action[T] extends AnyRef

    Permalink
    Definition Classes
    QueryDsl
  2. type ActionResult[T] = Long

    Permalink
    Definition Classes
    JdbcContext → SqlContext
  3. type BatchedActionResult[T] = List[Long]

    Permalink
    Definition Classes
    JdbcContext → SqlContext
  4. type Decoder[T] = context.Decoder[ResultSet, T]

    Permalink
    Definition Classes
    Context
  5. sealed trait Delete[T] extends Action[T]

    Permalink
    Definition Classes
    QueryDsl
  6. type Encoder[T] = context.Encoder[BindedStatementBuilder[PreparedStatement], T]

    Permalink
    Definition Classes
    Context
  7. sealed trait EntityQuery[T] extends Query[T]

    Permalink
    Definition Classes
    QueryDsl
  8. implicit class InfixInterpolator extends AnyRef

    Permalink
    Definition Classes
    InfixDsl
  9. sealed trait Insert[T] extends Action[T]

    Permalink
    Definition Classes
    QueryDsl
  10. sealed trait JoinQuery[A, B, R] extends Query[R]

    Permalink
    Definition Classes
    QueryDsl
  11. implicit class Like extends AnyRef

    Permalink
    Definition Classes
    SqlDsl
  12. case class MappedEncoding[I, O] extends Product with Serializable

    Permalink
    Definition Classes
    Context
  13. trait Ord[T] extends AnyRef

    Permalink
    Definition Classes
    OrdDsl
  14. sealed trait Query[+T] extends AnyRef

    Permalink
    Definition Classes
    QueryDsl
  15. type QueryResult[T] = List[T]

    Permalink
    Definition Classes
    JdbcContext → SqlContext
  16. trait Quoted[+T] extends AnyRef

    Permalink
    Definition Classes
    QuotationDsl
  17. sealed trait Schema[T] extends AnyRef

    Permalink
    Definition Classes
    QueryDsl
  18. type SingleQueryResult[T] = T

    Permalink
    Definition Classes
    JdbcContext → SqlContext
  19. sealed trait UnassignedAction[T] extends Action[T]

    Permalink
    Definition Classes
    QueryDsl
  20. sealed trait Update[T] extends Action[T]

    Permalink
    Definition Classes
    QueryDsl

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. implicit val bigDecimalDecoder: Decoder[BigDecimal]

    Permalink
    Definition Classes
    JdbcDecoders
  6. implicit val bigDecimalEncoder: Encoder[BigDecimal]

    Permalink
    Definition Classes
    JdbcEncoders
  7. implicit val booleanDecoder: Decoder[Boolean]

    Permalink
    Definition Classes
    JdbcDecoders
  8. implicit val booleanEncoder: Encoder[Boolean]

    Permalink
    Definition Classes
    JdbcEncoders
  9. implicit val byteArrayDecoder: Decoder[Array[Byte]]

    Permalink
    Definition Classes
    JdbcDecoders
  10. implicit val byteArrayEncoder: Encoder[Array[Byte]]

    Permalink
    Definition Classes
    JdbcEncoders
  11. implicit val byteDecoder: Decoder[Byte]

    Permalink
    Definition Classes
    JdbcDecoders
  12. implicit val byteEncoder: Encoder[Byte]

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

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

    Permalink
    Definition Classes
    JdbcContext → Closeable → AutoCloseable
  15. implicit val dateDecoder: Decoder[Date]

    Permalink
    Definition Classes
    JdbcDecoders
  16. implicit val dateEncoder: Encoder[Date]

    Permalink
    Definition Classes
    JdbcEncoders
  17. val dateTimeZone: TimeZone

    Permalink
    Attributes
    protected
    Definition Classes
    JdbcEncoders
  18. def decoder[T](f: (ResultSet) ⇒ (Int) ⇒ T): Decoder[T]

    Permalink
    Definition Classes
    JdbcDecoders
  19. implicit val doubleDecoder: Decoder[Double]

    Permalink
    Definition Classes
    JdbcDecoders
  20. implicit val doubleEncoder: Encoder[Double]

    Permalink
    Definition Classes
    JdbcEncoders
  21. def encoder[T](f: (PreparedStatement) ⇒ (Int, T) ⇒ Unit): Encoder[T]

    Permalink
    Definition Classes
    JdbcEncoders
  22. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def executeAction(sql: String, bind: (BindedStatementBuilder[PreparedStatement]) ⇒ BindedStatementBuilder[PreparedStatement] = identity, generated: Option[String] = None): Long

    Permalink
  25. def executeActionBatch[T](sql: String, bindParams: (T) ⇒ (BindedStatementBuilder[PreparedStatement]) ⇒ BindedStatementBuilder[PreparedStatement] = ..., generated: Option[String] = None): ActionApply[T]

    Permalink
  26. def executeQuery[T](sql: String, extractor: (ResultSet) ⇒ T = identity[ResultSet], bind: (BindedStatementBuilder[PreparedStatement]) ⇒ BindedStatementBuilder[PreparedStatement] = identity): List[T]

    Permalink
  27. def executeQuerySingle[T](sql: String, extractor: (ResultSet) ⇒ T = identity[ResultSet], bind: (BindedStatementBuilder[PreparedStatement]) ⇒ BindedStatementBuilder[PreparedStatement] = identity): T

    Permalink
  28. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  29. implicit val floatDecoder: Decoder[Float]

    Permalink
    Definition Classes
    JdbcDecoders
  30. implicit val floatEncoder: Encoder[Float]

    Permalink
    Definition Classes
    JdbcEncoders
  31. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  32. def handleSingleResult[T](list: List[T]): T

    Permalink
    Attributes
    protected
    Definition Classes
    Context
  33. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  34. implicit def implicitOrd[T]: Ord[T]

    Permalink
    Definition Classes
    OrdDsl
    Annotations
    @compileTimeOnly( ... )
  35. implicit val intDecoder: Decoder[Int]

    Permalink
    Definition Classes
    JdbcDecoders
  36. implicit val intEncoder: Encoder[Int]

    Permalink
    Definition Classes
    JdbcEncoders
  37. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  38. def lift[T](v: T): T

    Permalink
    Definition Classes
    QuotationDsl
    Annotations
    @compileTimeOnly( ... )
  39. implicit val longDecoder: Decoder[Long]

    Permalink
    Definition Classes
    JdbcDecoders
  40. implicit val longEncoder: Encoder[Long]

    Permalink
    Definition Classes
    JdbcEncoders
  41. implicit def mappedDecoder[I, O](implicit mapped: MappedEncoding[I, O], decoder: Decoder[I]): Decoder[O]

    Permalink
    Definition Classes
    Context
  42. implicit def mappedEncoder[I, O](implicit mapped: MappedEncoding[I, O], encoder: Encoder[O]): Encoder[I]

    Permalink
    Definition Classes
    Context
  43. def mappedEncoding[I, O](f: (I) ⇒ O): MappedEncoding[I, O]

    Permalink
    Definition Classes
    Context
  44. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  47. implicit def optionDecoder[T](implicit d: Decoder[T]): Decoder[Option[T]]

    Permalink
    Definition Classes
    JdbcDecoders
  48. implicit def optionEncoder[T](implicit d: Encoder[T]): Encoder[Option[T]]

    Permalink
    Definition Classes
    JdbcEncoders
  49. def probe(sql: String): Try[Boolean]

    Permalink
    Definition Classes
    JdbcContext → SqlContext
  50. def query[T](implicit ct: ClassTag[T]): EntityQuery[T]

    Permalink
    Definition Classes
    QueryDsl
    Annotations
    @compileTimeOnly( ... )
  51. implicit macro def quote[T](body: T): Quoted[T]

    Permalink
    Definition Classes
    QuotationDsl
  52. macro def quote[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R](func: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  53. macro def quote[T1, T2, T3, T4, T5, T6, T7, T8, T9, R](func: (T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  54. macro def quote[T1, T2, T3, T4, T5, T6, T7, T8, R](func: (T1, T2, T3, T4, T5, T6, T7, T8) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6, T7, T8) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  55. macro def quote[T1, T2, T3, T4, T5, T6, T7, R](func: (T1, T2, T3, T4, T5, T6, T7) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6, T7) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  56. macro def quote[T1, T2, T3, T4, T5, T6, R](func: (T1, T2, T3, T4, T5, T6) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  57. macro def quote[T1, T2, T3, T4, T5, R](func: (T1, T2, T3, T4, T5) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  58. macro def quote[T1, T2, T3, T4, R](func: (T1, T2, T3, T4) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  59. macro def quote[T1, T2, T3, R](func: (T1, T2, T3) ⇒ Quoted[R]): Quoted[(T1, T2, T3) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  60. macro def quote[T1, T2, R](func: (T1, T2) ⇒ Quoted[R]): Quoted[(T1, T2) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  61. macro def quote[T1, R](func: (T1) ⇒ Quoted[R]): Quoted[(T1) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  62. macro def quote[T](body: Quoted[T]): Quoted[T]

    Permalink
    Definition Classes
    QuotationDsl
  63. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ T]): (P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  64. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ T]): (P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  65. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8) ⇒ T]): (P1, P2, P3, P4, P5, P6, P7, P8) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  66. macro def run[P1, P2, P3, P4, P5, P6, P7, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7) ⇒ T]): (P1, P2, P3, P4, P5, P6, P7) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  67. macro def run[P1, P2, P3, P4, P5, P6, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6) ⇒ T]): (P1, P2, P3, P4, P5, P6) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  68. macro def run[P1, P2, P3, P4, P5, T](quoted: Quoted[(P1, P2, P3, P4, P5) ⇒ T]): (P1, P2, P3, P4, P5) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  69. macro def run[P1, P2, P3, P4, T](quoted: Quoted[(P1, P2, P3, P4) ⇒ T]): (P1, P2, P3, P4) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  70. macro def run[P1, P2, P3, T](quoted: Quoted[(P1, P2, P3) ⇒ T]): (P1, P2, P3) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  71. macro def run[P1, P2, T](quoted: Quoted[(P1, P2) ⇒ T]): (P1, P2) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  72. macro def run[P1, T](quoted: Quoted[(P1) ⇒ T]): (P1) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  73. macro def run[T](quoted: Quoted[T]): SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  74. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  75. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6, P7, P8, P9)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  76. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6, P7, P8)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  77. macro def run[P1, P2, P3, P4, P5, P6, P7, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6, P7)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  78. macro def run[P1, P2, P3, P4, P5, P6, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  79. macro def run[P1, P2, P3, P4, P5, T](quoted: Quoted[(P1, P2, P3, P4, P5) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  80. macro def run[P1, P2, P3, P4, T](quoted: Quoted[(P1, P2, P3, P4) ⇒ Action[T]]): (List[(P1, P2, P3, P4)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  81. macro def run[P1, P2, P3, T](quoted: Quoted[(P1, P2, P3) ⇒ Action[T]]): (List[(P1, P2, P3)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  82. macro def run[P1, P2, T](quoted: Quoted[(P1, P2) ⇒ Action[T]]): (List[(P1, P2)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  83. macro def run[P1, T](quoted: Quoted[(P1) ⇒ Action[T]]): (List[P1]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  84. macro def run[T](quoted: Quoted[Action[T]]): ActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  85. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  86. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  87. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6, P7, P8) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  88. macro def run[P1, P2, P3, P4, P5, P6, P7, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6, P7) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  89. macro def run[P1, P2, P3, P4, P5, P6, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  90. macro def run[P1, P2, P3, P4, P5, T](quoted: Quoted[(P1, P2, P3, P4, P5) ⇒ Query[T]]): (P1, P2, P3, P4, P5) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  91. macro def run[P1, P2, P3, P4, T](quoted: Quoted[(P1, P2, P3, P4) ⇒ Query[T]]): (P1, P2, P3, P4) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  92. macro def run[P1, P2, P3, T](quoted: Quoted[(P1, P2, P3) ⇒ Query[T]]): (P1, P2, P3) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  93. macro def run[P1, P2, T](quoted: Quoted[(P1, P2) ⇒ Query[T]]): (P1, P2) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  94. macro def run[P1, T](quoted: Quoted[(P1) ⇒ Query[T]]): (P1) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  95. macro def run[T](quoted: Quoted[Query[T]]): QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  96. implicit val shortDecoder: Decoder[Short]

    Permalink
    Definition Classes
    JdbcDecoders
  97. implicit val shortEncoder: Encoder[Short]

    Permalink
    Definition Classes
    JdbcEncoders
  98. implicit val stringDecoder: Decoder[String]

    Permalink
    Definition Classes
    JdbcDecoders
  99. implicit val stringEncoder: Encoder[String]

    Permalink
    Definition Classes
    JdbcEncoders
  100. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  101. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  102. def transaction[T](f: ⇒ T): T

    Permalink
  103. implicit def traversableEncoder[T](implicit enc: Encoder[T]): Encoder[Traversable[T]]

    Permalink
    Definition Classes
    JdbcEncoders
  104. implicit def unquote[T](quoted: Quoted[T]): T

    Permalink
    Definition Classes
    QuotationDsl
    Annotations
    @compileTimeOnly( ... )
  105. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  108. def withConnection[T](f: (Connection) ⇒ T): T

    Permalink
    Attributes
    protected
  109. implicit def wrappedTypeDecoder[T <: WrappedType]: MappedEncoding[T, context.Context.wrappedTypeDecoder.T.Type]

    Permalink
    Definition Classes
    Context

Inherited from JdbcDecoders

Inherited from JdbcEncoders

Inherited from SqlContext[D, N, ResultSet, BindedStatementBuilder[PreparedStatement]]

Inherited from SqlDsl

Inherited from Context[ResultSet, BindedStatementBuilder[PreparedStatement]]

Inherited from CoreDsl

Inherited from QuotationDsl

Inherited from QueryDsl

Inherited from OrdDsl

Inherited from InfixDsl

Inherited from Closeable

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped