case class GetJsonOption[T <: AnyRef](url: String)(implicit evidence$3: ClassTag[T], evidence$4: scala.reflect.api.JavaUniverse.TypeTag[T]) extends GetChannel with JsonSerialization with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, JsonSerialization, GetChannel, Channel, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GetJsonOption
  2. Serializable
  3. Product
  4. Equals
  5. JsonSerialization
  6. GetChannel
  7. Channel
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new GetJsonOption(url: String)(implicit arg0: ClassTag[T], arg1: scala.reflect.api.JavaUniverse.TypeTag[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def fromJson[T](json: String)(implicit codec: JsonValueCodec[T]): T

    Deserializes a JSON string into a given type.

    Deserializes a JSON string into a given type.

    T

    The type to deserialize the content into.

    Definition Classes
    JsonSerialization
  8. def fromJsonBytes[T](json: ByteBuffer)(implicit codec: JsonValueCodec[T]): T

    Deserializes a JSON byte buffer into a given type.

    Deserializes a JSON byte buffer into a given type. This is more efficient than fromJson.

    T

    The type to deserialize the content into.

    Definition Classes
    JsonSerialization
  9. def fromJsonBytesOption[T](json: ByteBuffer)(implicit codec: JsonValueCodec[T]): Option[T]

    Same as fromJsonBytes, but handles option values, by deserializing empty buffer to None.

    Same as fromJsonBytes, but handles option values, by deserializing empty buffer to None.

    T

    The type to deserialize the content into.

    Definition Classes
    JsonSerialization
  10. def fromJsonOption[T](json: String)(implicit codec: JsonValueCodec[T]): Option[T]

    Same as fromJson, but handles option values, by deserializing empty string to None.

    Same as fromJson, but handles option values, by deserializing empty string to None.

    T

    The type to deserialize the content into.

    Definition Classes
    JsonSerialization
  11. def get(implicit httpChannel: HttpChannel, codec: JsonValueCodec[T]): Option[T]
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. val method: Kind
    Definition Classes
    GetChannelChannel
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  18. def productElementNames: Iterator[String]
    Definition Classes
    Product
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toJson[T](obj: T)(implicit codec: JsonValueCodec[T]): String

    Serializes an object to a compact JSON string without indentation and line breaks.

    Serializes an object to a compact JSON string without indentation and line breaks.

    obj

    The object to serialize.

    Definition Classes
    JsonSerialization
  21. def toJsonBytes[T](obj: T)(implicit codec: JsonValueCodec[T]): Array[Byte]

    Serializes an object to a JSON bytes with UTF-8 encoding without indentation and line breaks.

    Serializes an object to a JSON bytes with UTF-8 encoding without indentation and line breaks. This is more efficient than toJson.

    obj

    The object to serialize.

    Definition Classes
    JsonSerialization
  22. def toJsonBytesOption[T](obj: Option[T])(implicit codec: JsonValueCodec[T]): Array[Byte]

    Same as toJsonBytes, but handles option values, which are serialized to empty arrays.

    Same as toJsonBytes, but handles option values, which are serialized to empty arrays.

    obj

    The object to serialize.

    Definition Classes
    JsonSerialization
  23. def toJsonOption[T](obj: Option[T])(implicit codec: JsonValueCodec[T]): String

    Same as toJson, but handles option values, which are serialized to empty strings.

    Same as toJson, but handles option values, which are serialized to empty strings.

    obj

    The object to serialize.

    Definition Classes
    JsonSerialization
  24. val url: String
    Definition Classes
    GetJsonOptionChannel
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. def wildcardUrl: String
    Definition Classes
    Channel

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from JsonSerialization

Inherited from GetChannel

Inherited from Channel

Inherited from AnyRef

Inherited from Any

Ungrouped