org.json4s

reflect

package reflect

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

Type Members

  1. case class ClassDescriptor(simpleName: String, fullName: String, erasure: ScalaType, companion: Option[SingletonDescriptor], constructors: Seq[ConstructorDescriptor], properties: Seq[PropertyDescriptor]) extends ObjectDescriptor with Product with Serializable

  2. case class ConstructorDescriptor(params: Seq[ConstructorParamDescriptor], constructor: Constructor[_], isPrimary: Boolean) extends Descriptor with Product with Serializable

  3. case class ConstructorParamDescriptor(name: String, mangledName: String, argIndex: Int, argType: ScalaType, defaultValue: Option[() ⇒ Any]) extends Descriptor with Product with Serializable

  4. sealed trait Descriptor extends AnyRef

  5. sealed trait ObjectDescriptor extends Descriptor

  6. trait ParameterNameReader extends AnyRef

  7. case class PrimitiveDescriptor(erasure: ScalaType, default: Option[() ⇒ Any] = scala.None) extends ObjectDescriptor with Product with Serializable

  8. case class PropertyDescriptor(name: String, mangledName: String, returnType: ScalaType, field: Field) extends Descriptor with Product with Serializable

  9. trait ReflectorDescribable[T] extends AnyRef

  10. class ScalaType extends Equals

  11. case class SingletonDescriptor(simpleName: String, fullName: String, erasure: ScalaType, instance: AnyRef, properties: Seq[PropertyDescriptor]) extends Descriptor with Product with Serializable

  12. case class TypeInfo(clazz: Class[_], parameterizedType: Option[ParameterizedType]) extends Product with Serializable

Value Members

  1. object ManifestFactory

  2. object ParanamerReader extends ParameterNameReader

  3. object Reflector

  4. object ScalaSigReader

  5. object ScalaType

  6. implicit def classDescribable(t: Class[_])(implicit formats: Formats = DefaultFormats): ReflectorDescribable[Class[_]]

  7. def fail(msg: String, cause: Exception = null): Nothing

  8. def safeSimpleName(clazz: Class[_]): String

  9. implicit def scalaTypeDescribable(t: ScalaType)(implicit formats: Formats = DefaultFormats): ReflectorDescribable[ScalaType]

  10. implicit def stringDescribable(t: String)(implicit formats: Formats = DefaultFormats): ReflectorDescribable[String]

  11. def stripDollar(name: String): String

Inherited from AnyRef

Inherited from Any

Ungrouped