trait QueryOps extends AnyRef
- Alphabetic
- By Inheritance
- QueryOps
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Abstract Value Members
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
-
def
+*?[T](values: Seq[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self
alias for withQueryParam
-
def
+*?[T](value: T)(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self
alias for withQueryParam
-
def
+?[K, T](name: K, values: Seq[T])(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self
alias for withQueryParam
-
def
+?[K](name: K)(implicit arg0: QueryParamKeyLike[K]): Self
alias for withQueryParam
-
def
+?[K, T](name: K, value: T)(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self
alias for withQueryParam
-
def
+?[T](implicit arg0: QueryParam[T]): Self
alias for withQueryParam
-
def
+??[T](value: Option[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self
alias for withOptionQueryParam
-
def
+??[K, T](name: K, value: Option[T])(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self
alias for withOptionQueryParam
-
def
+??[T](value: Maybe[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self
alias for withMaybeQueryParam
-
def
+??[K, T](name: K, value: Maybe[T])(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self
alias for withMaybeQueryParam
- def ->[B](y: B): (QueryOps, B)
-
def
-?[K](key: K)(implicit arg0: QueryParamKeyLike[K]): Self
alias for removeQueryParam
-
def
-?[T](implicit key: QueryParam[T]): Self
alias for removeQueryParam
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
=?[T](q: Map[String, Seq[T]])(implicit arg0: QueryParamEncoder[T]): Self
alias for setQueryParams
-
def
?[K](name: K)(implicit arg0: QueryParamKeyLike[K]): Boolean
alias for containsQueryParam
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def containsQueryParam[K](key: K)(implicit arg0: QueryParamKeyLike[K]): Boolean
-
def
containsQueryParam[T](implicit key: QueryParam[T]): Boolean
Checks if a specified parameter exists in the Query.
Checks if a specified parameter exists in the Query. A parameter without a name can be checked with an empty string.
- def ensuring(cond: (QueryOps) ⇒ Boolean, msg: ⇒ Any): QueryOps
- def ensuring(cond: (QueryOps) ⇒ Boolean): QueryOps
- def ensuring(cond: Boolean, msg: ⇒ Any): QueryOps
- def ensuring(cond: Boolean): QueryOps
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
removeQueryParam[K](key: K)(implicit arg0: QueryParamKeyLike[K]): Self
Creates maybe a new
Self
without the specified parameter in query.Creates maybe a new
Self
without the specified parameter in query. If no parameter with the givenkey
exists thenthis
will be returned. -
def
setQueryParams[K, T](params: Map[K, Seq[T]])(implicit arg0: QueryParamKeyLike[K], arg1: QueryParamEncoder[T]): Self
Creates maybe a new
Self
with the specified parameters.Creates maybe a new
Self
with the specified parameters. The entire Query will be replaced with the given one. -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withMaybeQueryParam[T](value: Maybe[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self
Creates maybe a new
Self
with the specified parameter in the Query.Creates maybe a new
Self
with the specified parameter in the Query. If the value is empty or if the parameter to be added equal the existing entry the same instance ofSelf
will be returned. If a parameter with the givenname
already exists the values will be replaced. -
def
withMaybeQueryParam[T, K](key: K, value: Maybe[T])(implicit arg0: QueryParamEncoder[T], arg1: QueryParamKeyLike[K]): Self
Creates maybe a new
Self
with the specified parameter in the Query.Creates maybe a new
Self
with the specified parameter in the Query. If the value is empty the same instance ofSelf
will be returned. If a parameter with the givenkey
already exists the values will be replaced. -
def
withOptionQueryParam[T](value: Option[T])(implicit arg0: QueryParam[T], arg1: QueryParamEncoder[T]): Self
Creates maybe a new
Self
with the specified parameter in the Query.Creates maybe a new
Self
with the specified parameter in the Query. If the value is empty or if the parameter to be added equal the existing entry the same instance ofSelf
will be returned. If a parameter with the givenname
already exists the values will be replaced. -
def
withOptionQueryParam[T, K](key: K, value: Option[T])(implicit arg0: QueryParamEncoder[T], arg1: QueryParamKeyLike[K]): Self
Creates maybe a new
Self
with the specified parameter in the Query.Creates maybe a new
Self
with the specified parameter in the Query. If the value is empty or if the parameter to be added equal the existing entry the same instance ofSelf
will be returned. If a parameter with the givenkey
already exists the values will be replaced. -
def
withQueryParam[T, K](key: K, values: Seq[T])(implicit arg0: QueryParamEncoder[T], arg1: QueryParamKeyLike[K]): Self
Creates maybe a new
Self
with the specified parameters in the Query.Creates maybe a new
Self
with the specified parameters in the Query. If a parameter with the givenkey
already exists the values will be replaced. -
def
withQueryParam[T, K](key: K, value: T)(implicit arg0: QueryParamEncoder[T], arg1: QueryParamKeyLike[K]): Self
Creates maybe a new
Self
with the specified parameter in the Query.Creates maybe a new
Self
with the specified parameter in the Query. If a parameter with the givenkey
already exists the values will be replaced. If the parameter to be added equal the existing entry the same instance ofSelf
will be returned. -
def
withQueryParam[K](key: K)(implicit arg0: QueryParamKeyLike[K]): Self
Creates a new
Self
with the specified parameter in the Query.Creates a new
Self
with the specified parameter in the Query. If a parameter with the givenkey
already exists the values will be replaced with an empty list. -
def
withQueryParam[T](implicit arg0: QueryParam[T]): Self
Creates a new
Self
with the specified parameter in the Query.Creates a new
Self
with the specified parameter in the Query. If a parameter with the givenQueryParam.key
already exists the values will be replaced with an empty list. - def →[B](y: B): (QueryOps, B)