All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kaizensolutions.virgil.cql.CqlPartRepr.scala Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package io.kaizensolutions.virgil.cql

/**
 * CqlPartRepr is the internal representation of a CqlInterpolatedString and is
 * used to make composition of CqlInterpolatedStrings easier to cope with
 */
sealed private[cql] trait CqlPartRepr
private[cql] object CqlPartRepr {
  final case class Pair(query: String, marker: ValueInCql) extends CqlPartRepr
  final case class Query(query: String)                    extends CqlPartRepr
  final case class Marker(marker: ValueInCql)              extends CqlPartRepr
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy