scala.reflect.runtime.JavaMirrors

JavaMirror

class JavaMirror extends SymbolTable.Roots with SymbolTable.JavaMirror

The API of a mirror for a reflective universe

Definition Classes
JavaMirrorsJavaUniverse
Self Type
SymbolTable.JavaMirror
Source
JavaMirrors.scala
Linear Supertypes
SymbolTable.JavaMirror, SymbolTable.RuntimeMirror, SymbolTable.ReflectiveMirror, SymbolTable.Roots, SymbolTable.RootsBase, MirrorOf[JavaMirrors.this.type], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JavaMirror
  2. JavaMirror
  3. RuntimeMirror
  4. ReflectiveMirror
  5. Roots
  6. RootsBase
  7. MirrorOf
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JavaMirror(owner: SymbolTable.Symbol, classLoader: ClassLoader)

Type Members

  1. implicit class RichClass extends AnyRef

    Methods which need to be treated with care because they either are getSimpleName or call getSimpleName:

  2. sealed trait RootSymbol extends SymbolTable.Symbol with WellKnownSymbol

    Definition Classes
    Roots
  3. sealed trait WellKnownSymbol extends SymbolTable.Symbol

    Definition Classes
    Roots

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    Any
  3. final def ##(): Int

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (SymbolTable.JavaMirror, B)

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to ArrowAssoc[SymbolTable.JavaMirror] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Test two objects for equality.

    Test two objects for equality. The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    Any
  8. object EmptyPackage extends SymbolTable.ModuleSymbol with WellKnownSymbol

    Definition Classes
    RootsRootsBaseMirrorOf
  9. object EmptyPackageClass extends SymbolTable.PackageClassSymbol with WellKnownSymbol

    Definition Classes
    RootsRootsBaseMirrorOf
  10. object RootClass extends SymbolTable.PackageClassSymbol with RootSymbol

    .

  11. object RootPackage extends SymbolTable.ModuleSymbol with RootSymbol

    Definition Classes
    RootsRootsBaseMirrorOf
  12. final def asInstanceOf[T0]: T0

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown
    ClassCastException

    if the receiver object is not an instance of the erasure of type T0.

  13. val classLoader: ClassLoader

    Definition Classes
    JavaMirrorJavaMirror
  14. def classSymbol(rtcls: SymbolTable.RuntimeClass): SymbolTable.ClassSymbol

    A class symbol for the specified runtime class.

    A class symbol for the specified runtime class.

    returns

    The class symbol for the runtime class in the current class loader.

    Definition Classes
    JavaMirrorRuntimeMirror
    Exceptions thrown
    java.lang.ClassNotFoundException

    if no class with that name exists

    scala.reflect.internal.MissingRequirementError

    if no corresponding symbol exists to do: throws anything else?

  15. def classToJava(clazz: SymbolTable.ClassSymbol): Class[_]

    The Java class corresponding to given Scala class.

    The Java class corresponding to given Scala class. Note: This only works for

    • top-level classes
    • Scala classes that were generated via jclassToScala
    • classes that have a class owner that has a corresponding Java class
    Annotations
    @throws( clazz = classOf[ClassNotFoundException] )
    Exceptions thrown
    A

    ClassNotFoundException for all Scala classes not in one of these categories.

  16. def classToScala(jclazz: Class[_]): SymbolTable.ClassSymbol

    The Scala class that corresponds to a given Java class.

    The Scala class that corresponds to a given Java class.

    jclazz

    The Java class

    returns

    A Scala class symbol that reflects all elements of the Java class, in the form they appear in the Scala pickling info, or, if that is not available, wrapped from the Java reflection info.

  17. def clone(): AnyRef

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
    Note

    not specified by SLS as a member of AnyRef

  18. def constructorToJava(constr: SymbolTable.MethodSymbol): Constructor[_]

    The Java constructor corresponding to a given Scala constructor.

    The Java constructor corresponding to a given Scala constructor.

    constr

    The Scala constructor

  19. def constructorToScala(jconstr: Constructor[_]): SymbolTable.MethodSymbol

    The Scala constructor corresponding to given Java constructor.

    The Scala constructor corresponding to given Java constructor.

    jconstr

    The Java constructor

    returns

    A Scala method object that corresponds to jconstr.

  20. def ensuring(cond: (SymbolTable.JavaMirror) ⇒ Boolean, msg: ⇒ Any): SymbolTable.JavaMirror

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to Ensuring[SymbolTable.JavaMirror] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: (SymbolTable.JavaMirror) ⇒ Boolean): SymbolTable.JavaMirror

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to Ensuring[SymbolTable.JavaMirror] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean, msg: ⇒ Any): SymbolTable.JavaMirror

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to Ensuring[SymbolTable.JavaMirror] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean): SymbolTable.JavaMirror

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to Ensuring[SymbolTable.JavaMirror] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. final def eq(arg0: AnyRef): Boolean

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  25. def equals(arg0: Any): Boolean

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  26. def erasureName[T](implicit arg0: ClassTag[T]): String

    ********************** helpers ***********************

    ********************** helpers ***********************

    Definition Classes
    RootsBase
  27. def fieldToJava(fld: SymbolTable.TermSymbol): Field

    The Java field corresponding to a given Scala field.

  28. def fieldToScala(jfield: Field): SymbolTable.TermSymbol

    The Scala field corresponding to given Java field.

    The Scala field corresponding to given Java field.

    jfield

    The Java field

    returns

    A Scala field object that corresponds to jfield. // ??? should we return the getter instead?

  29. def finalize(): Unit

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
    Note

    not specified by SLS as a member of AnyRef

  30. def findMemberFromRoot(fullName: SymbolTable.Name): SymbolTable.Symbol

    Definition Classes
    RootsBase
  31. def formatted(fmtstr: String): String

    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).

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  32. def genericDeclarationToScala(jdecl: GenericDeclaration): SymbolTable.Symbol

    The Scala symbol that corresponds to a given Java generic declaration (class, method, or constructor)

  33. final def getClass(): Class[_]

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  34. def getClassByName(fullname: SymbolTable.Name): SymbolTable.ClassSymbol

    Definition Classes
    RootsBase
  35. def getClassIfDefined(fullname: SymbolTable.Name): SymbolTable.Symbol

    Definition Classes
    RootsBase
  36. def getClassIfDefined(fullname: String): SymbolTable.Symbol

    Definition Classes
    RootsBase
  37. def getModuleByName(fullname: SymbolTable.Name): SymbolTable.ModuleSymbol

    Definition Classes
    RootsBase
  38. def getModuleIfDefined(fullname: SymbolTable.Name): SymbolTable.Symbol

    Definition Classes
    RootsBase
  39. def getModuleIfDefined(fullname: String): SymbolTable.Symbol

    Definition Classes
    RootsBase
  40. def getPackage(fullname: SymbolTable.Name): SymbolTable.ModuleSymbol

    Definition Classes
    RootsBase
  41. def getPackageObject(fullname: String): SymbolTable.ModuleSymbol

    Definition Classes
    RootsBase
  42. def getPackageObjectIfDefined(fullname: SymbolTable.Name): SymbolTable.Symbol

    Definition Classes
    RootsBase
  43. def getPackageObjectIfDefined(fullname: String): SymbolTable.Symbol

    Definition Classes
    RootsBase
  44. def getRequiredClass(fullname: String): SymbolTable.ClassSymbol

    Definition Classes
    RootsBase
  45. def getRequiredModule(fullname: String): SymbolTable.ModuleSymbol

    Definition Classes
    RootsBase
  46. def getRequiredPackage(fullname: String): SymbolTable.ModuleSymbol

    Definition Classes
    RootsBase
  47. def hashCode(): Int

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  48. def init(): Unit

    getModule2/getClass2 aren't needed at present but may be again, so for now they're mothballed.

    getModule2/getClass2 aren't needed at present but may be again, so for now they're mothballed.

    Definition Classes
    RootsBase
  49. final def isInstanceOf[T0]: Boolean

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  50. def javaClass(path: String): Class[_]

  51. lazy val magicMethodOwners: Set[SymbolTable.Symbol]

  52. def methodToJava(meth: SymbolTable.MethodSymbol): Method

    The Java method corresponding to a given Scala method.

    The Java method corresponding to a given Scala method.

    meth

    The Scala method

  53. def methodToScala(jmeth: Method): SymbolTable.MethodSymbol

    The Scala method corresponding to given Java method.

    The Scala method corresponding to given Java method.

    jmeth

    The Java method

    returns

    A Scala method object that corresponds to jmeth.

  54. def mirrorDefining(jclazz: Class[_]): SymbolTable.JavaMirror

    The mirror that corresponds to the classloader that original defined the given Java class

  55. def mirrorMissingHook(owner: SymbolTable.Symbol, name: SymbolTable.Name): SymbolTable.Symbol

    Attributes
    protected
    Definition Classes
    RootsBase
  56. def moduleSymbol(rtcls: SymbolTable.RuntimeClass): SymbolTable.ModuleSymbol

    A module symbol for the specified runtime class.

    A module symbol for the specified runtime class.

    returns

    The module symbol for the runtime class in the current class loader.

    Definition Classes
    JavaMirrorRuntimeMirror
    Exceptions thrown
    java.lang.ClassNotFoundException

    if no class with that name exists

    scala.reflect.internal.MissingRequirementError

    if no corresponding symbol exists to do: throws anything else?

  57. final def ne(arg0: AnyRef): Boolean

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  58. lazy val nonMagicObjectMethods: Set[SymbolTable.Symbol]

  59. final def notify(): Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  60. final def notifyAll(): Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  61. def packageNameToScala(fullname: String): SymbolTable.ModuleSymbol

    The Scala package with given fully qualified name.

  62. def packageToJavaOption(pkg: SymbolTable.ModuleSymbol): Option[Package]

    Optionally, the Java package corresponding to a given Scala package, or None if no such Java package exists.

    Optionally, the Java package corresponding to a given Scala package, or None if no such Java package exists.

    pkg

    The Scala package

  63. def packageToScala(jpkg: Package): SymbolTable.ModuleSymbol

    The Scala package corresponding to given Java package

  64. def reflect[T](obj: T)(implicit arg0: ClassTag[T]): SymbolTable.InstanceMirror

    A reflective mirror for the given object.

    A reflective mirror for the given object.

    Such a mirror can be used to further reflect against the members of the object to get/set fields, invoke methods and inspect inner classes and objects.

    Definition Classes
    JavaMirrorReflectiveMirror
  65. def reflectClass(cls: SymbolTable.ClassSymbol): SymbolTable.ClassMirror

    Reflects against a static class symbol and returns a mirror that can be used to create instances of the class, inspect its companion object or perform further reflections.

    Reflects against a static class symbol and returns a mirror that can be used to create instances of the class, inspect its companion object or perform further reflections.

    To get a class symbol by the name of the class you would like to reflect, use <this mirror>.classSymbol(<runtime class loaded by its name>).

    The input symbol can be either private or non-private (Scala reflection transparently deals with visibility). It must be static, i.e. either top-level or nested within one or several static objects.

    Definition Classes
    JavaMirrorReflectiveMirror
  66. def reflectModule(mod: SymbolTable.ModuleSymbol): SymbolTable.ModuleMirror

    Reflects against a static module symbol and returns a mirror that can be used to get the instance of the object or inspect its companion class.

    Reflects against a static module symbol and returns a mirror that can be used to get the instance of the object or inspect its companion class.

    To get a module symbol by the name of its companion class you would like to reflect, use <this mirror>.classSymbol(<runtime class loaded by its name>).companion.get.

    The input symbol can be either private or non-private (Scala reflection transparently deals with visibility). It must be static, i.e. either top-level or nested within one or several static objects.

    Definition Classes
    JavaMirrorReflectiveMirror
  67. def requiredClass[T](implicit arg0: ClassTag[T]): SymbolTable.ClassSymbol

    Definition Classes
    RootsBase
  68. def requiredModule[T](implicit arg0: ClassTag[T]): SymbolTable.ModuleSymbol

    Definition Classes
    RootsBase
  69. lazy val rootLoader: SymbolTable.LazyType

    The lazy type for root.

    The lazy type for root.

    Definition Classes
    JavaMirrorRootsBase
  70. def runtimeClass(cls: SymbolTable.ClassSymbol): SymbolTable.RuntimeClass

    Maps a Scala class symbol to the corresponding Java class object

    Maps a Scala class symbol to the corresponding Java class object

    Definition Classes
    JavaMirrorRuntimeMirror
    Exceptions thrown
    ClassNotFoundException

    if there is no Java class corresponding to the given Scala class symbol. Note: If the Scala symbol is ArrayClass, a ClassNotFound exception is thrown because there is no unique Java class corresponding to a Scala generic array

  71. def runtimeClass(tpe: SymbolTable.Type): SymbolTable.RuntimeClass

    Maps a Scala type to the corresponding Java class object

    Maps a Scala type to the corresponding Java class object

    Definition Classes
    JavaMirrorRuntimeMirror
  72. def staticClass(fullname: String): SymbolTable.ClassSymbol

    The symbol corresponding to the globally accessible class with the given fully qualified name fullName.

    The symbol corresponding to the globally accessible class with the given fully qualified name fullName.

    If the name points to a type alias, it's recursively dealiased and its target is returned. If you need a symbol that corresponds to the type alias itself, load it directly from the package class:

    scala> cm.staticClass("scala.List") res0: reflect.runtime.universe.ClassSymbol = class List

    scala> res0.fullName res1: String = scala.collection.immutable.List

    scala> cm.staticPackage("scala") res2: reflect.runtime.universe.ModuleSymbol = package scala

    scala> res2.moduleClass.typeSignature member newTypeName("List") res3: reflect.runtime.universe.Symbol = type List

    scala> res3.fullName res4: String = scala.List

    To be consistent with Scala name resolution rules, in case of ambiguity between a package and an object, the object is never been considered.

    For example for the following code:

    package foo { class B }

    object foo { class A class B }

    staticClass("foo.B") will resolve to the symbol corresponding to the class B declared in the package foo, and staticClass("foo.A") will throw a MissingRequirementException (which is exactly what scalac would do if this fully qualified class name is written inside any package in a Scala program).

    In the example above, to load a symbol that corresponds to the class B declared in the object foo, use staticModule("foo") to load the module symbol and then navigate typeSignature.members of its moduleClass.

    Unlike getClassByName/getRequiredClass this function can also load packageless symbols. Compiler might ignore them, but they should be loadable with macros.

    Definition Classes
    RootsBaseMirrorOf
  73. def staticModule(fullname: String): SymbolTable.ModuleSymbol

    The symbol corresponding to the globally accessible object with the given fully qualified name fullName.

    The symbol corresponding to the globally accessible object with the given fully qualified name fullName.

    To be consistent with Scala name resolution rules, in case of ambiguity between a package and an object, the object is never been considered.

    For example for the following code:

    package foo { object B }

    object foo { object A object B }

    staticModule("foo.B") will resolve to the symbol corresponding to the object B declared in the package foo, and staticModule("foo.A") will throw a MissingRequirementException (which is exactly what scalac would do if this fully qualified class name is written inside any package in a Scala program).

    In the example above, to load a symbol that corresponds to the object B declared in the object foo, use staticModule("foo") to load the module symbol and then navigate typeSignature.members of its moduleClass.

    Unlike getModule/getRequiredModule this function can also load packageless symbols. Compiler might ignore them, but they should be loadable with macros.

    Definition Classes
    RootsBaseMirrorOf
  74. def staticPackage(fullname: String): SymbolTable.ModuleSymbol

    The symbol corresponding to a package with the given fully qualified name fullName.

    The symbol corresponding to a package with the given fully qualified name fullName.

    Definition Classes
    JavaMirrorRootsBaseMirrorOf
  75. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  76. def toScala[J, S](cache: TwoWayCache[J, S], key: J)(body: (SymbolTable.JavaMirror, J) ⇒ S)(implicit arg0: HasJavaClass[J]): S

  77. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    JavaMirror → AnyRef → Any
  78. def tryJavaClass(path: String): Option[Class[_]]

    Does path correspond to a Java class with that fully qualified name in the current class loader?

  79. def typeParamToScala(jparam: TypeVariable[_ <: GenericDeclaration]): SymbolTable.TypeSymbol

    The Scala type parameter that corresponds to a given Java type parameter.

    The Scala type parameter that corresponds to a given Java type parameter.

    jparam

    The Java type parameter

    returns

    A Scala type parameter symbol that has the same owner and name as the Java type parameter

  80. def typeToJavaClass(tpe: SymbolTable.Type): Class[_]

    The Java class that corresponds to given Scala type.

    The Java class that corresponds to given Scala type. Pre: Scala type is already transformed to Java level.

  81. def typeToScala(jtpe: java.lang.reflect.Type): SymbolTable.Type

    The Scala type that corresponds to given Java type

  82. val universe: JavaMirrors.this.type

    .

    ..

    Definition Classes
    JavaMirrorMirrorOf
  83. def universeMissingHook(owner: SymbolTable.Symbol, name: SymbolTable.Name): SymbolTable.Symbol

    Attributes
    protected
    Definition Classes
    RootsBase
  84. def unpickleClass(clazz: SymbolTable.Symbol, module: SymbolTable.Symbol, jclazz: Class[_]): Unit

    how connected???? Generate types for top-level Scala root class and root companion object from the pickled information stored in a corresponding Java class

    how connected???? Generate types for top-level Scala root class and root companion object from the pickled information stored in a corresponding Java class

    clazz

    The top-level Scala class for which info is unpickled

    module

    The top-level Scala companion object for which info is unpickled

    jclazz

    The Java class which contains the unpickled information in a ScalaSignature or ScalaLongSignature annotation.

  85. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  86. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  87. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  88. def [B](y: B): (SymbolTable.JavaMirror, B)

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to ArrowAssoc[SymbolTable.JavaMirror] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implict Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (javaMirror: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (javaMirror: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def getClass(fullname: SymbolTable.Name): SymbolTable.ClassSymbol

    Definition Classes
    RootsBase
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use getClassByName

  2. def getModule(fullname: SymbolTable.Name): SymbolTable.ModuleSymbol

    Definition Classes
    RootsBase
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use getModuleByName

  3. def x: SymbolTable.JavaMirror

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to ArrowAssoc[SymbolTable.JavaMirror] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (javaMirror: ArrowAssoc[SymbolTable.JavaMirror]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  4. def x: SymbolTable.JavaMirror

    Implicit information
    This member is added by an implicit conversion from SymbolTable.JavaMirror to Ensuring[SymbolTable.JavaMirror] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (javaMirror: Ensuring[SymbolTable.JavaMirror]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from SymbolTable.JavaMirror

Inherited from SymbolTable.RuntimeMirror

Inherited from SymbolTable.ReflectiveMirror

Inherited from SymbolTable.Roots

Inherited from SymbolTable.RootsBase

Inherited from MirrorOf[JavaMirrors.this.type]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SymbolTable.JavaMirror to StringAdd

Inherited by implicit conversion any2stringfmt from SymbolTable.JavaMirror to StringFormat

Inherited by implicit conversion any2ArrowAssoc from SymbolTable.JavaMirror to ArrowAssoc[SymbolTable.JavaMirror]

Inherited by implicit conversion any2Ensuring from SymbolTable.JavaMirror to Ensuring[SymbolTable.JavaMirror]

No Group