SubUnique

molecule.sql.jdbc.query.cursorStrategy.SubUnique
case class SubUnique[Tpl](elements: List[Element], optLimit: Option[Int], cursor: String) extends JdbcQueryResolve[Tpl], FutureUtils, CursorUtils, MoleculeLogging

Molecule has a unique attribute that is not sorted first.

We filter by the previous value of the primary non-unique attribute and then loop until the previous value of the unique attribute is found and then take the following rows.

This is of course not optimal, especially if the primary standard sort attribute contains few values and the data set is big. * Presumes that the row with the previous unique value hasn't been altered.

Type parameters

Tpl

Type of each row

Value parameters

cursor

Base64 encoded cursor meta information, including previous edge values.

elements

Molecule model

optLimit

When going forward from start, use a positive number. And vice versa from end with a negative number. Can't be zero.

Attributes

Source
SubUnique.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait FutureUtils
class JdbcQueryResolve[Tpl]
trait CursorUtils
class Model2SqlQuery[Tpl]
trait MoleculeLogging
trait Logging
trait ModelUtils
trait LambdasSet
trait LambdasOne
trait ResolveBase
trait NestOpt[Tpl]
trait Nest[Tpl]
trait CastNestedBranch_
trait CastRow2Tpl_
trait SqlQueryBase
trait JavaConversions
trait AsScalaExtensions
trait AsJavaExtensions
trait BaseHelpers
trait DateHandling
trait RegexMatching
trait ResolveRef
trait ResolveExprSetRefAttr[Tpl]
trait ResolveExprSet[Tpl]
trait AggrUtils
trait ResolveExprOne[Tpl]
trait Model2Query
class Object
trait Matchable
class Any
Show all

Members list

Type members

Inherited classlikes

object Avg

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
Supertypes
class Object
trait Matchable
class Any
trait Avg[A]

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
Supertypes
class Object
trait Matchable
class Any
implicit class BufferHasAsJava[A](b: Buffer[A])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class CollectionHasAsScala[A](c: Collection[A])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class ConcurrentMapHasAsJava[K, V](m: Map[K, V])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class ConcurrentMapHasAsScala[K, V](m: ConcurrentMap[K, V])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class DictionaryHasAsScala[K, V](d: Dictionary[K, V])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class EnumerationHasAsScala[A](e: Enumeration[A])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class IterableHasAsJava[A](i: Iterable[A])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class IterableHasAsScala[A](i: Iterable[A])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class IteratorHasAsJava[A](i: Iterator[A])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class IteratorHasAsScala[A](i: Iterator[A])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class ListHasAsScala[A](l: List[A])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class MapHasAsJava[K, V](m: Map[K, V])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class MapHasAsScala[K, V](m: Map[K, V])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class MutableMapHasAsJava[K, V](m: Map[K, V])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class MutableSeqHasAsJava[A](s: Seq[A])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class MutableSetHasAsJava[A](s: Set[A])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class PropertiesHasAsScala(i: Properties)

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class Regex(sc: StringContext)

Attributes

Inherited from:
RegexMatching
Source
RegexMatching.scala
Supertypes
class Object
trait Matchable
class Any
case class ResOne[T](tpe: String, sql2one: (Row, AttrIndex) => T, sql2oneOrNull: (Row, AttrIndex) => Any, one2sql: T => String, array2set: (Row, Int) => AnyRef)

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class ResOneOpt[T](tpe: String, sql2oneOpt: (Row, AttrIndex) => Option[T], one2sql: T => String)

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class ResSet[T](tpe: String, sql2set: (Row, AttrIndex) => Set[T], sql2setOrNull: (Row, AttrIndex) => Any, set2sql: Set[T] => String, set2sqls: Set[T] => Set[String], one2sql: T => String, array2set: (Row, Int) => Set[T], nestedArray2coalescedSet: (Row, Int) => Set[T], nestedArray2nestedSet: (Row, Int) => Set[Set[T]], array2setFirst: (Row, Int) => Set[T], array2setLast: (Row, Int) => Set[T], nestedArray2setAsc: Int => (Row, Int) => Set[T], nestedArray2setDesc: Int => (Row, Int) => Set[T], array2setSum: (Row, Int) => Set[T])

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class ResSetOpt[T](tpe: String, sql2setOpt: (Row, AttrIndex) => Option[Set[T]], set2sql: Set[T] => String, set2sqls: Set[T] => Set[String], one2sql: T => String)

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
implicit class SeqHasAsJava[A](s: Seq[A])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class SetHasAsJava[A](s: Set[A])

Attributes

Inherited from:
AsJavaExtensions
Supertypes
class Object
trait Matchable
class Any
implicit class SetHasAsScala[A](s: Set[A])

Attributes

Inherited from:
AsScalaExtensions
Supertypes
class Object
trait Matchable
class Any
object StdDev

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
Supertypes
class Object
trait Matchable
class Any
trait StdDev[A]

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
Supertypes
class Object
trait Matchable
class Any
object Variance

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
Supertypes
class Object
trait Matchable
class Any
trait Variance[A]

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
Supertypes
class Object
trait Matchable
class Any
implicit class futEither2fut[T](fut: Future[Either[MoleculeError, T]])(implicit ec: ExecutionContext)

Attributes

Inherited from:
FutureUtils
Source
FutureUtils.scala
Supertypes
class Object
trait Matchable
class Any

Inherited types

type AttrIndex = Int

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
type NestedTpls = List[Any]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
type Row = ResultSetInterface

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala

Value members

Concrete methods

def getPage(allTokens: List[String], limit: Int)(implicit conn: JdbcConn_JVM): (List[Tpl], String, Boolean)

Attributes

Source
SubUnique.scala

Inherited methods

final protected def addCast(cast: (Row, Int) => Any): Unit

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected def aritiesAttr(): Unit

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected def aritiesNested(): Unit

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
def averageOf[A](vs: A*)(implicit avg: Avg[A]): Double

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
def await[T](body: => Future[T], atMost: Duration): T

Attributes

Inherited from:
FutureUtils
Source
FutureUtils.scala
protected def bigDec(arg: Any): BigDecimal

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
final protected def castBranch[T](arities: List[List[Int]], casts: List[(Row, AttrIndex) => Any], firstAttrIndex: AttrIndex, firstAttrIndexTx: AttrIndex): (Row, NestedTpls) => T

Attributes

Inherited from:
CastNestedBranch_
Source
CastNestedBranch_.scala
final protected def castRow2AnyTpl(arities: List[List[Int]], casts: List[(Row, AttrIndex) => Any], attrIndex: AttrIndex, nested: Option[NestedTpls]): Row => Any

Attributes

Inherited from:
CastRow2Tpl_
Source
CastRow2Tpl_.scala
protected def countValueAttrs(elements: List[Element]): Int

Attributes

Inherited from:
ModelUtils
Source
ModelUtils.scala
def date2datomic(date: Date): String

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
def date2str(date: Date, zoneOffset: ZoneOffset): String

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
def daylight(ms: Long): Int

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
protected def decoder(tpe: String): String => Any

Attributes

Inherited from:
CursorUtils
Source
CursorUtils.scala
protected def double(arg: Any): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def either[T](fut: Future[T])(implicit ec: ExecutionContext): Future[Either[MoleculeError, T]]

Attributes

Inherited from:
FutureUtils
Source
FutureUtils.scala
protected def encoder(tpe: String, kind: String): Any => String

Attributes

Inherited from:
CursorUtils
Source
CursorUtils.scala
def escStr(s: String): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def expandDateStr(dateStr: String): String

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
def firstLow(str: Any): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def future[T](body: => T)(implicit ec: ExecutionContext): Future[T]

Attributes

Inherited from:
FutureUtils
Source
FutureUtils.scala
final def getAttrNames(elements: List[Element], attrs: Set[String]): Set[String]

Attributes

Inherited from:
ModelUtils
Source
ModelUtils.scala
final protected def getCol(attr: Attr): String

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
protected def getData(conn: JdbcConn_JVM, optLimit: Option[Int], optOffset: Option[Int]): ResultSet

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
protected def getFilterAttr(tpe: String, ns: String, attr: String, fn: Op, v: String): AttrOneTac

Attributes

Inherited from:
CursorUtils
Source
CursorUtils.scala
protected def getFromUntil(tc: Int, limit: Option[Int], offset: Option[Int]): Option[(Int, Int, Boolean)]

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
final protected def getInitialNonGenericNs(elements: List[Element]): String

Attributes

Inherited from:
ModelUtils
Source
ModelUtils.scala
final protected def getInitialNs(elements: List[Element]): String

Attributes

Inherited from:
ModelUtils
Source
ModelUtils.scala
def getKwName(kw: String): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def getMedian(set: Set[Double]): Double

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
protected def getRawData(conn: JdbcConn_JVM, altElements: List[Element], optLimit: Option[Int], optOffset: Option[Int]): ResultSet

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
def getRowCount(resultSet: Row): Int

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
protected def getRowHashes(tpls: List[Tpl]): List[String]

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
final def getSqlQuery(altElements: List[Element], optLimit: Option[Int], optOffset: Option[Int]): String

Attributes

Inherited from:
Model2SqlQuery
Source
Model2SqlQuery.scala
protected def getTotalCount(conn: JdbcConn_JVM): Int

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
final def getTotalCountQuery: String

Attributes

Inherited from:
Model2SqlQuery
Source
Model2SqlQuery.scala
protected def getUniquePair(tpls: List[Tpl], uniqueIndex: Int, encode: Any => String): List[String]

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
protected def getUniqueValues(tpls0: List[Tpl], uniqueIndex: Int, encode: Any => String): List[String]

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
def indent(tabs: Int): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def isRefUpdate(elements: List[Element]): Boolean

Attributes

Inherited from:
ModelUtils
Source
ModelUtils.scala
def localOffset: String

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
def localZoneOffset: ZoneOffset

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
protected def logger: Logger

The logger for this class.

The logger for this class.

Attributes

Inherited from:
Logging
Source
Logging.scala
protected def loggerName: String

Override this to change the name of the underlying logger.

Override this to change the name of the underlying logger.

Defaults to class name with package

Attributes

Inherited from:
Logging
Source
Logging.scala
final protected def noMixedNestedModes: Nothing

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final def o(opt: Option[Any]): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
final def oStr(opt: Option[String]): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
final def oStr2(opt: Option[String]): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
protected def okEnumIdent(enumIdent: String): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
protected def okIdent(name: String): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
protected def okNamespaceName(name: String): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
protected def okPartitionName(name: String): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
final def opt(opt: Option[Any]): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def pad(longest: Int, shorter: Int): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def padS(longest: Int, str: String): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def paginateFromIdentifiers(conn: JdbcConn_JVM, limit: Int, forward: Boolean, allTokens: List[String], attrTokens: List[String], identifiers: List[Any], identifyTpl: Tpl => Any, nextCursor: (List[Tpl], List[String]) => String): (List[Tpl], String, Boolean)

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
final protected def removeLastCast(): Unit

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final def render(value: Any): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
final def renderValidations(validations: Seq[(String, String)]): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
final protected def replaceCast(cast: (Row, Int) => Any): Unit

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected def resetTimer(): Unit

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
protected def resolveAttrOneMan(attr: AttrOneMan): Unit

Attributes

Inherited from:
ResolveExprOne
Source
ResolveExprOne.scala
protected def resolveAttrOneOpt(attr: AttrOneOpt): Unit

Attributes

Inherited from:
ResolveExprOne
Source
ResolveExprOne.scala
protected def resolveAttrOneTac(attr: AttrOneTac): Unit

Attributes

Inherited from:
ResolveExprOne
Source
ResolveExprOne.scala
protected def resolveAttrSetMan(attr: AttrSetMan): Unit

Attributes

Inherited from:
ResolveExprSet
Source
ResolveExprSet.scala
protected def resolveAttrSetOpt(attr: AttrSetOpt): Unit

Attributes

Inherited from:
ResolveExprSet
Source
ResolveExprSet.scala
protected def resolveAttrSetTac(attr: AttrSetTac): Unit

Attributes

Inherited from:
ResolveExprSet
Source
ResolveExprSet.scala
protected def resolveNestedOptRef(nestedRef: Ref): Unit

Attributes

Inherited from:
ResolveRef
Source
ResolveRef.scala
protected def resolveNestedRef(ref: Ref): Unit

Attributes

Inherited from:
ResolveRef
Source
ResolveRef.scala
protected def resolveRef(ref: Ref): Unit

Attributes

Inherited from:
ResolveRef
Source
ResolveRef.scala
protected def resolveRefAttrSetMan(attr: AttrSetMan): Unit

Attributes

Inherited from:
ResolveExprSetRefAttr
Source
ResolveExprSetRefAttr.scala
protected def resolveRefAttrSetOpt(attr: AttrSetOpt): Unit

Attributes

Inherited from:
ResolveExprSetRefAttr
Source
ResolveExprSetRefAttr.scala
protected def resolveRefAttrSetTac(attr: AttrSetTac): Unit

Attributes

Inherited from:
ResolveExprSetRefAttr
Source
ResolveExprSetRefAttr.scala
final protected def rows2nested(rows: Row): List[Tpl]

Attributes

Inherited from:
Nest
Source
Nest.scala
final protected def rows2nestedOpt(rows: Row): List[Tpl]

Attributes

Inherited from:
NestOpt
Source
NestOpt.scala
final def sq[T](values: Iterable[T]): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
protected def sqlArray2set[T](row: Row, n: Int, getValue: Row => T): Set[T]

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
def stdDevOf[A](vs: A*)(implicit stdDev: StdDev[A]): Double

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
def str2date(s: String, zoneOffset: ZoneOffset): Date

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
def str2zdt(s: String, zoneOffset: ZoneOffset): ZonedDateTime

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
def thousands(i: Long): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
final protected def time(n: Int, prev: Int): Unit

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
protected def tpeEncode(element: AttrOne): (String, Any => String)

Attributes

Inherited from:
CursorUtils
Source
CursorUtils.scala
def truncateDateStr(dateStr: String): String

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala
def unescStr(s: String): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
final protected def unexpectedElement(element: Element): Nothing

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected def unexpectedKw(kw: String): Nothing

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected def unexpectedOp(op: Op): Nothing

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
def validateQueryModel(elements: List[Element]): Unit

Attributes

Inherited from:
Model2Query
Source
Model2Query.scala
def varianceOf[A](vs: A*)(implicit variance: Variance[A]): Double

Attributes

Inherited from:
AggrUtils
Source
AggrUtils.scala
def withDecimal(v: Any): String

Attributes

Inherited from:
BaseHelpers
Source
BaseHelpers.scala
def zone: ZoneId

Attributes

Inherited from:
DateHandling
Source
DateHandling.scala

Inherited fields

final protected var aggregate: Boolean

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected val args: ArrayBuffer[AnyRef]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var aritiess: List[List[List[Int]]]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected val availableAttrs: Set[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var castss: List[List[(Row, Int) => Any]]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var distinct: Boolean

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
lazy val edgeValuesNotFound: String

Attributes

Inherited from:
JdbcQueryResolve
Source
JdbcQueryResolve.scala
final protected val expectedFilterAttrs: Set[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected val exts: Map[String, Option[String]]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var filterAttrVars: Map[String, String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var from: String

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected val groupBy: LinkedHashSet[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected val groupByCols: LinkedHashSet[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var hardLimit: Int

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var hasOptAttr: Boolean

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected val having: LinkedHashSet[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected val in: ArrayBuffer[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var isNested: Boolean

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var isNestedOpt: Boolean

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected val joins: ListBuffer[(String, String, String, String)]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
final protected var level: Int

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
val logFormatter: Formatter

Attributes

Inherited from:
MoleculeLogging
Source
MoleculeLogging.scala
val logLevel: Level

Attributes

Inherited from:
MoleculeLogging
Source
MoleculeLogging.scala
final protected val nestedIds: ArrayBuffer[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
lazy val noIdFiltering: String

Attributes

Inherited from:
Model2SqlQuery
Source
Model2SqlQuery.scala
final protected val notNull: ListBuffer[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
lazy protected val one2sqlBigDecimal: BigDecimal => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlBigInt: BigInt => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlBoolean: Boolean => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlByte: Byte => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlChar: Char => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlDate: Date => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlDouble: Double => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlFloat: Float => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlInt: Int => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlLong: Long => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlShort: Short => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlString: String => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlURI: URI => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val one2sqlUUID: UUID => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
final protected var orderBy: ListBuffer[(Int, Int, String, String)]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
lazy protected val resBigDecimal1: ResOne[BigDecimal]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resBigInt1: ResOne[BigInt]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resBoolean1: ResOne[Boolean]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resByte1: ResOne[Byte]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resChar1: ResOne[Char]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resDate1: ResOne[Date]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resDouble1: ResOne[Double]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resFloat1: ResOne[Float]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resInt1: ResOne[Int]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resLong1: ResOne[Long]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptBigDecimal: ResOneOpt[BigDecimal]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptBigInt: ResOneOpt[BigInt]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptBoolean: ResOneOpt[Boolean]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptByte: ResOneOpt[Byte]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptChar: ResOneOpt[Char]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptDate: ResOneOpt[Date]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptDouble: ResOneOpt[Double]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptFloat: ResOneOpt[Float]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptInt: ResOneOpt[Int]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptLong: ResOneOpt[Long]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptSetBigDecimal: ResSetOpt[BigDecimal]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetBigInt: ResSetOpt[BigInt]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetBoolean: ResSetOpt[Boolean]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetByte: ResSetOpt[Byte]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetChar: ResSetOpt[Char]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetDate: ResSetOpt[Date]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetDouble: ResSetOpt[Double]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetFloat: ResSetOpt[Float]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetInt: ResSetOpt[Int]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetLong: ResSetOpt[Long]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetShort: ResSetOpt[Short]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetString: ResSetOpt[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetURI: ResSetOpt[URI]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptSetUUID: ResSetOpt[UUID]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resOptShort: ResOneOpt[Short]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptString: ResOneOpt[String]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptURI: ResOneOpt[URI]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resOptUUID: ResOneOpt[UUID]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy val resSetBigDecimal: ResSet[BigDecimal]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetBigInt: ResSet[BigInt]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetBoolean: ResSet[Boolean]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetByte: ResSet[Byte]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetChar: ResSet[Char]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetDate: ResSet[Date]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetDouble: ResSet[Double]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetFloat: ResSet[Float]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetInt: ResSet[Int]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetLong: ResSet[Long]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetShort: ResSet[Short]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetString: ResSet[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetURI: ResSet[URI]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val resSetUUID: ResSet[UUID]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val resShort1: ResOne[Short]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resString1: ResOne[String]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resURI1: ResOne[URI]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val resUUID1: ResOne[UUID]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
final protected val select: ListBuffer[String]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala
lazy protected val set2sqlBigDecimal: Set[BigDecimal] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlBigInt: Set[BigInt] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlBoolean: Set[Boolean] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlByte: Set[Byte] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlChar: Set[Char] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlDate: Set[Date] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlDouble: Set[Double] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlFloat: Set[Float] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlInt: Set[Int] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlLong: Set[Long] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlShort: Set[Short] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlString: Set[String] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlURI: Set[URI] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlUUID: Set[UUID] => String

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsBigDecimal: Set[BigDecimal] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsBigInt: Set[BigInt] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsBoolean: Set[Boolean] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsByte: Set[Byte] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsChar: Set[Char] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsDate: Set[Date] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsDouble: Set[Double] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsFloat: Set[Float] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsInt: Set[Int] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsLong: Set[Long] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsShort: Set[Short] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsString: Set[String] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsURI: Set[URI] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val set2sqlsUUID: Set[UUID] => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2oneBigDecimal: (Row, Int) => BigDecimal

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneBigInt: (Row, Int) => BigInt

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneBoolean: (Row, Int) => Boolean

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneByte: (Row, Int) => Byte

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneChar: (Row, Int) => Char

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneDate: (Row, Int) => Date

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneDouble: (Row, Int) => Double

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneFloat: (Row, Int) => Float

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneInt: (Row, Int) => Int

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneLong: (Row, Int) => Long

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptBigDecimal: (Row, Int) => Option[BigDecimal]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptBigInt: (Row, Int) => Option[BigInt]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptBoolean: (Row, Int) => Option[Boolean]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptByte: (Row, Int) => Option[Byte]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptChar: (Row, Int) => Option[Char]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptDate: (Row, Int) => Option[Date]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptDouble: (Row, Int) => Option[Double]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptFloat: (Row, Int) => Option[Float]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptInt: (Row, Int) => Option[Int]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptLong: (Row, Int) => Option[Long]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptShort: (Row, Int) => Option[Short]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptString: (Row, Int) => Option[String]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptURI: (Row, Int) => Option[URI]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneOptUUID: (Row, Int) => Option[UUID]

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneShort: (Row, Int) => Short

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneString: (Row, Int) => String

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneURI: (Row, Int) => URI

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2oneUUID: (Row, Int) => UUID

Attributes

Inherited from:
LambdasOne
Source
LambdasOne.scala
lazy protected val sql2setBigDecimal: (Row, Int) => Set[BigDecimal]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setBigInt: (Row, Int) => Set[BigInt]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setBoolean: (Row, Int) => Set[Boolean]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setByte: (Row, Int) => Set[Byte]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setChar: (Row, Int) => Set[Char]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setDate: (Row, Int) => Set[Date]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setDouble: (Row, Int) => Set[Double]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setFloat: (Row, Int) => Set[Float]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setInt: (Row, Int) => Set[Int]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setLong: (Row, Int) => Set[Long]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptBigDecimal: (Row, Int) => Option[Set[BigDecimal]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptBigInt: (Row, Int) => Option[Set[BigInt]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptBoolean: (Row, Int) => Option[Set[Boolean]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptByte: (Row, Int) => Option[Set[Byte]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptChar: (Row, Int) => Option[Set[Char]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptDate: (Row, Int) => Option[Set[Date]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptDouble: (Row, Int) => Option[Set[Double]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptFloat: (Row, Int) => Option[Set[Float]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptInt: (Row, Int) => Option[Set[Int]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptLong: (Row, Int) => Option[Set[Long]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptShort: (Row, Int) => Option[Set[Short]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptString: (Row, Int) => Option[Set[String]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptURI: (Row, Int) => Option[Set[URI]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setOptUUID: (Row, Int) => Option[Set[UUID]]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setShort: (Row, Int) => Set[Short]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setString: (Row, Int) => Set[String]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setURI: (Row, Int) => Set[URI]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy protected val sql2setUUID: (Row, Int) => Set[UUID]

Attributes

Inherited from:
LambdasSet
Source
LambdasSet.scala
lazy val toInt: (Row, Int) => Int

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueBigDecimal: Row => BigDecimal

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueBigInt: Row => BigInt

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueBoolean: Row => Boolean

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueByte: Row => Byte

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueChar: Row => Char

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueDate: Row => Date

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueDouble: Row => Double

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueFloat: Row => Float

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueInt: Row => Int

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueLong: Row => Long

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueShort: Row => Short

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueString: Row => String

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueURI: Row => URI

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
lazy protected val valueUUID: Row => UUID

Attributes

Inherited from:
ResolveBase
Source
ResolveBase.scala
final protected val where: ListBuffer[(String, String)]

Attributes

Inherited from:
SqlQueryBase
Source
SqlQueryBase.scala

Implicits

Inherited implicits

final implicit def Regex(sc: StringContext): Regex

Attributes

Inherited from:
RegexMatching
Source
RegexMatching.scala
final implicit def futEither2fut[T](fut: Future[Either[MoleculeError, T]])(implicit ec: ExecutionContext): futEither2fut[T]

Attributes

Inherited from:
FutureUtils
Source
FutureUtils.scala