Class Uri.Query$

  • Enclosing class:
    Uri

    public static class Uri.Query$
    extends java.lang.Object
    • 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.Query apply​(akka.parboiled2.ParserInput input, java.nio.charset.Charset charset, Uri.ParsingMode mode)  
      Uri.Query apply​(java.lang.String string)
      Parses the given String into a Query instance.
      Uri.Query apply​(scala.collection.immutable.Map<java.lang.String,​java.lang.String> params)  
      Uri.Query apply​(scala.collection.immutable.Seq<scala.Tuple2<java.lang.String,​java.lang.String>> params)  
      Uri.Query apply​(scala.Option<java.lang.String> input)  
      Uri.Query apply​(scala.Option<java.lang.String> input, java.nio.charset.Charset charset, Uri.ParsingMode mode)  
      java.lang.String EmptyValue()
      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()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final Uri.Query$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • Query$

        public Query$()
    • 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.Empty If you want to allow for Query.Empty creation use the apply overload taking an Option[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()