trait ClassMirror extends Universe.TemplateMirror
A mirror that reflects the instance parts of a runtime class. See the overview page for details on how to use runtime reflection.
- Source
- Mirrors.scala
- Alphabetic
- By Inheritance
- ClassMirror
- TemplateMirror
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
isStatic: Boolean
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]
- Definition Classes
- TemplateMirror
-
abstract
def
reflectConstructor(constructor: Universe.MethodSymbol): Universe.MethodMirror
Reflects against a constructor symbol and returns a mirror that can be used to invoke it and construct instances of this mirror's symbols.
Reflects against a constructor symbol and returns a mirror that can be used to invoke it and construct instances of this mirror's symbols.
To get a constructor symbol you would like to reflect, use
<this mirror>.symbol.info.member(termNames.CONSTRUCTOR).asMethod
. For further information about member lookup refer toSymbol.info
.The input symbol can be either private or non-private (Scala reflection transparently deals with visibility). It must be a member (declared or inherited) of the class underlying this mirror.
-
abstract
def
symbol: Universe.ClassSymbol
The Scala class symbol corresponding to the reflected class
The Scala class symbol corresponding to the reflected class
- Definition Classes
- ClassMirror → TemplateMirror
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from Universe.ClassMirror to any2stringadd[Universe.ClassMirror] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (Universe.ClassMirror, B)
- Implicit
- This member is added by an implicit conversion from Universe.ClassMirror to ArrowAssoc[Universe.ClassMirror] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
ensuring(cond: (Universe.ClassMirror) ⇒ Boolean, msg: ⇒ Any): Universe.ClassMirror
- Implicit
- This member is added by an implicit conversion from Universe.ClassMirror to Ensuring[Universe.ClassMirror] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (Universe.ClassMirror) ⇒ Boolean): Universe.ClassMirror
- Implicit
- This member is added by an implicit conversion from Universe.ClassMirror to Ensuring[Universe.ClassMirror] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): Universe.ClassMirror
- Implicit
- This member is added by an implicit conversion from Universe.ClassMirror to Ensuring[Universe.ClassMirror] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): Universe.ClassMirror
- Implicit
- This member is added by an implicit conversion from Universe.ClassMirror to Ensuring[Universe.ClassMirror] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from Universe.ClassMirror to StringFormat[Universe.ClassMirror] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
→[B](y: B): (Universe.ClassMirror, B)
- Implicit
- This member is added by an implicit conversion from Universe.ClassMirror to ArrowAssoc[Universe.ClassMirror] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc