class
TypedPythonObject[TN <: String] extends PythonObject
Instance Constructors
-
new
TypedPythonObject(obj: PyObject, runner: Runner)
Type Members
-
final
type
TypeName = TN
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
def
applyDynamic(method: String)(args: Any*): PythonObject
-
def
applyDynamicNamed(method: String)(args: (String, Any)*): PythonObject
-
def
as[T >: Null](implicit arg0: ClassTag[T]): T
-
final
def
asInstanceOf[T0]: T0
-
-
def
asScalaMap: Map[Any, Any]
-
def
asScalaMapOf[K, V](implicit arg0: ClassTag[K], arg1: ClassTag[V]): Map[K, V]
-
-
def
asTuple2Of[A, B](implicit arg0: ClassTag[A], arg1: ClassTag[B]): (A, B)
-
def
callKwArgs(callable: PyCallable, args: Seq[(String, Any)]): PythonObject
-
def
callPosArgs(callable: PyCallable, args: Seq[AnyRef]): PythonObject
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hasAttribute(name: String): Boolean
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
selectDynamic[T](name: String)(implicit returnType: ReturnTypeFor[T]): Out
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
updateDynamic(name: String)(value: Any): Unit
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from Dynamic
Inherited from AnyRef
Inherited from Any
A PythonObject which is refined by a constant literal string type indicating its type name. Python objects will be assigned a type like this (i.e.
TypedPythonObject["DataFrame"]) so that we can use its python type to find specific reprs for that type. For example, we could make an instance of type:ReprsOf[ TypedPythonObject[Witness.
"DataFrame".T] ]which would be selected for a PythonObject["DataFrame"]. Then, this instance could (for example) return a similar streaming data representation to what the Scala DataFrame instance does, enabling the built-in data viz.