object Types

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Types
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val boolean: __Type
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  7. def collectTypes(t: __Type, existingTypes: List[__Type] = Nil): List[__Type]

    Returns a map of all the types nested within the given root type.

  8. val double: __Type
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def extractCommonDescription(l: List[__Field]): Option[String]
  12. val float: __Type
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  15. def innerType(t: __Type): __Type
  16. val int: __Type
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def listOf(t: __Type): Option[__Type]
  19. val long: __Type
  20. def makeEnum(name: Option[String], description: Option[String], values: List[__EnumValue], origin: Option[String], directives: Option[List[Directive]] = None): __Type
  21. def makeField(name: String, description: Option[String], arguments: List[__InputValue], type: () => __Type, isDeprecated: Boolean = false, deprecationReason: Option[String] = None, directives: Option[List[Directive]] = None): __Field
  22. def makeInputObject(name: Option[String], description: Option[String], fields: List[__InputValue], origin: Option[String] = None, directives: Option[List[Directive]] = None): __Type
  23. def makeInterface(name: Option[String], description: Option[String], fields: () => List[__Field], subTypes: List[__Type], origin: Option[String] = None, directives: Option[List[Directive]] = None): __Type
  24. def makeObject(name: Option[String], description: Option[String], fields: List[__Field], directives: List[Directive], origin: Option[String] = None, interfaces: () => Option[List[__Type]] = () => Some(Nil)): __Type
  25. def makeScalar(name: String, description: Option[String] = None, specifiedBy: Option[String] = None, directives: Option[List[Directive]] = None): __Type

    Creates a new scalar type with the given name.

  26. def makeUnion(name: Option[String], description: Option[String], subTypes: List[__Type], origin: Option[String] = None, directives: Option[List[Directive]] = None): __Type
  27. def name(t: __Type): String
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  31. def same(t1: __Type, t2: __Type): Boolean
    Annotations
    @tailrec()
  32. val string: __Type
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. def unify(t1: __Type, t2: __Type): Option[__Type]

    Tries to unify two types by widening them to a common supertype.

    Tries to unify two types by widening them to a common supertype.

    t1

    type second type to unify

    t2

    the first type to unify

    returns

    the unified type if one could be found

    Example:
    1. unify(string, makeNonNull(string)) // => Some(__Type(SCALAR, Some("String")))
  36. def unify(l: List[__Field]): Option[__Type]

    Tries to find a common widened type among a list of fields.

    Tries to find a common widened type among a list of fields.

    l

    a list of fields to unify

    returns

    the unified type if one could be found

  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped