scala.reflect

ManifestFactory

object ManifestFactory

ManifestFactory defines factory methods for manifests. It is intended for use by the compiler and should not be used in client code.

Unlike Manifest, this factory isn't annotated with a deprecation warning. This is done to prevent avalanches of deprecation warnings in the code that calls methods with manifests. Why so complicated? Read up the comments for ClassManifestFactory.

Source
Manifest.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ManifestFactory
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Definition Classes
    AnyRef → Any
  4. val Any: Manifest[Any]

  5. val AnyRef: Manifest[AnyRef]

  6. val AnyVal: Manifest[AnyVal]

  7. val Boolean: AnyValManifest[Boolean]

  8. val Byte: AnyValManifest[Byte]

  9. val Char: AnyValManifest[Char]

  10. val Double: AnyValManifest[Double]

  11. val Float: AnyValManifest[Float]

  12. val Int: AnyValManifest[Int]

  13. val Long: AnyValManifest[Long]

  14. val Nothing: Manifest[Nothing]

  15. val Null: Manifest[Null]

  16. val Object: Manifest[AnyRef]

  17. val Short: AnyValManifest[Short]

  18. val Unit: AnyValManifest[Unit]

  19. def abstractType[T](prefix: Manifest[_], name: String, upperBound: Class[_], args: Manifest[_]*): Manifest[T]

    Manifest for the abstract type prefix # name'. upperBound is not strictly necessary as it could be obtained by reflection. It was added so that erasure can be calculated without reflection.

  20. def arrayType[T](arg: Manifest[_]): Manifest[Array[T]]

  21. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  22. def classType[T](prefix: Manifest[_], clazz: Class[_], args: Manifest[_]*): Manifest[T]

    Manifest for the class type clazz[args], where clazz is a class with non-package prefix type prefix and type arguments args.

  23. def classType[T](clazz: Class[T], arg1: Manifest[_], args: Manifest[_]*): Manifest[T]

    Manifest for the class type clazz, where clazz is a top-level or static class and args are its type arguments.

  24. def classType[T](clazz: Class[_]): Manifest[T]

    Manifest for the class type clazz[args], where clazz is a top-level or static class.

    Manifest for the class type clazz[args], where clazz is a top-level or static class.

    Note

    This no-prefix, no-arguments case is separate because we it's called from ScalaRunTime.boxArray itself. If we pass varargs as arrays into this, we get an infinitely recursive call to boxArray. (Besides, having a separate case is more efficient)

  25. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  28. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  29. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  30. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  31. def intersectionType[T](parents: Manifest[_]*): Manifest[T]

    Manifest for the intersection type parents_0 with ... with parents_n'.

  32. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  33. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  34. final def notify(): Unit

    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  36. def singleType[T <: AnyRef](value: AnyRef): Manifest[T]

    Manifest for the singleton type value.type.

  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  38. def toString(): String

    Definition Classes
    AnyRef → Any
  39. def valueManifests: List[AnyValManifest[_]]

  40. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. def wildcardType[T](lowerBound: Manifest[_], upperBound: Manifest[_]): Manifest[T]

    Manifest for the unknown type _ >: L <: U in an existential.

Inherited from AnyRef

Inherited from Any

Ungrouped