If the reflected runtime class corresponds to a Scala object definition, returns the single instance representing that object.
If the reflected runtime class corresponds to a Scala object definition,
returns the single instance representing that object.
If this mirror reflects the static part of a runtime class, returns null
.
True if the mirror represents the static part of a runtime class or the companion object of a Scala class.
True if the mirror represents the static part of a runtime class or the companion object of a Scala class. One has:
this.isStatic == this.isInstanceOf[ModuleMirror] !this.isStatic == this.isInstanceOf[ClassMirror]
The Scala module symbol corresponding to the reflected object
The Scala module symbol corresponding to the reflected object
Returns string formatted according to given format
string.
Returns string formatted according to given format
string.
Format strings are as for String.format
(@see java.lang.String.format).
A mirror that reflects a Scala object definition or the static parts of a runtime class. See the overview page for details on how to use runtime reflection.