Package akka.http.scaladsl.model
Class Uri.Query$
- java.lang.Object
-
- akka.http.scaladsl.model.Uri.Query$
-
- Enclosing class:
- Uri
public static class Uri.Query$ extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUri.Query$.Consstatic classUri.Query$.Cons$static classUri.Query$.Empty$
-
Field Summary
Fields Modifier and Type Field Description static Uri.Query$MODULE$Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description Query$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Uri.Queryapply(akka.parboiled2.ParserInput input, java.nio.charset.Charset charset, Uri.ParsingMode mode)Uri.Queryapply(java.lang.String string)Parses the given String into a Query instance.Uri.Queryapply(scala.collection.immutable.Map<java.lang.String,java.lang.String> params)Uri.Queryapply(scala.collection.immutable.Seq<scala.Tuple2<java.lang.String,java.lang.String>> params)Uri.Queryapply(scala.Option<java.lang.String> input)Uri.Queryapply(scala.Option<java.lang.String> input, java.nio.charset.Charset charset, Uri.ParsingMode mode)java.lang.StringEmptyValue()A special empty String value which will be rendered without a '=' after the key.scala.collection.mutable.Builder<scala.Tuple2<java.lang.String,java.lang.String>,Uri.Query>newBuilder()
-
-
-
Field Detail
-
MODULE$
public static final Uri.Query$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
EmptyValue
public java.lang.String EmptyValue()
A special empty String value which will be rendered without a '=' after the key.
-
apply
public Uri.Query apply(java.lang.String string)
Parses the given String into a Query instance. Note that this method will never return Query.Empty, even for the empty String. Empty strings will be parsed to("", "") +: Query.EmptyIf you want to allow for Query.Empty creation use the apply overload taking anOption[String].- Parameters:
string- (undocumented)- Returns:
- (undocumented)
-
apply
public Uri.Query apply(akka.parboiled2.ParserInput input, java.nio.charset.Charset charset, Uri.ParsingMode mode)
-
apply
public Uri.Query apply(scala.Option<java.lang.String> input)
-
apply
public Uri.Query apply(scala.Option<java.lang.String> input, java.nio.charset.Charset charset, Uri.ParsingMode mode)
-
apply
public Uri.Query apply(scala.collection.immutable.Seq<scala.Tuple2<java.lang.String,java.lang.String>> params)
-
apply
public Uri.Query apply(scala.collection.immutable.Map<java.lang.String,java.lang.String> params)
-
newBuilder
public scala.collection.mutable.Builder<scala.Tuple2<java.lang.String,java.lang.String>,Uri.Query> newBuilder()
-
-