object ToValue
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ToValue
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[A](implicit instance: ToValue[A]): ToValue[A]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- implicit def enumToStringValue[E <: Enumeration]: ToStringValue[ToValue.enumToStringValue.E.Value]
>>> object WeekDays extends Enumeration { val Mon,Tue,Wed,Thu,Fri = Value } >>> ToValue[WeekDays.Value].apply(WeekDays.Tue) StringValue(Tue)
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- implicit val intToStringValue: ToStringValue[Int]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit def listToValue[A](implicit toValueA: ToStringValue[A]): ToValue[List[A]]
- implicit def listTuplesToValue[A](implicit toValueA: ToStringValue[A]): ToValue[List[(String, A)]]
- implicit val longToStringValue: ToStringValue[Long]
- implicit def mapToValue[V](implicit toValueV: ToStringValue[V]): ToValue[Map[String, V]]
>>> ToValue[Map[String, Int]].apply(Map("one" -> 1, "two" -> 2, "three" -> 3)) AssociativeArray(List((one,1), (two,2), (three,3)))
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- implicit def seqToValue[A](implicit toValueA: ToStringValue[A]): ToValue[Seq[A]]
>>> ToValue[Seq[String]].apply(Seq("red", "green", "blue")) ListValue(List(red, green, blue)) >>> ToValue[List[String]].apply(List("red", "green", "blue")) ListValue(List(red, green, blue)) >>> ToValue[Vector[String]].apply(Vector("red", "green", "blue")) ListValue(Vector(red, green, blue)) >>> ToValue[Vector[Int]].apply(Vector(1, 2, 3)) ListValue(Vector(1, 2, 3))
- implicit def seqTuplesToValue[A](implicit toValueA: ToStringValue[A]): ToValue[Seq[(String, A)]]
>>> ToValue[Seq[(String, Int)]].apply(Seq("one" -> 1, "two" -> 2, "three" -> 3)) AssociativeArray(List((one,1), (two,2), (three,3))) >>> ToValue[List[(String, Int)]].apply(List("one" -> 1, "two" -> 2, "three" -> 3)) AssociativeArray(List((one,1), (two,2), (three,3))) >>> ToValue[Vector[(String, Int)]].apply(Vector("one" -> 1, "two" -> 2, "three" -> 3)) AssociativeArray(Vector((one,1), (two,2), (three,3)))
- implicit val stringToStringValue: ToStringValue[String]
>>> ToValue[String].apply("woo") StringValue(woo) >>> ToValue[Int].apply(42) StringValue(42) >>> ToValue[Long].apply(42L) StringValue(42)
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit def vectorToValue[A](implicit toValueA: ToStringValue[A]): ToValue[Vector[A]]
- implicit def vectorTuplesToValue[A](implicit toValueA: ToStringValue[A]): ToValue[Vector[(String, A)]]
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])