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]) @native() @HotSpotIntrinsicCandidate()
  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. val float: __Type
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def innerType(t: __Type): __Type
  15. val int: __Type
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def listOf(t: __Type): Option[__Type]
  18. val long: __Type
  19. def makeEnum(name: Option[String], description: Option[String], values: List[__EnumValue], origin: Option[String], directives: Option[List[Directive]] = None): __Type
  20. def makeInputObject(name: Option[String], description: Option[String], fields: List[__InputValue], origin: Option[String] = None, directives: Option[List[Directive]] = None): __Type
  21. def makeInterface(name: Option[String], description: Option[String], fields: () => List[__Field], subTypes: List[__Type], origin: Option[String] = None, directives: Option[List[Directive]] = None): __Type
  22. 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
  23. def makeScalar(name: String, description: Option[String] = None, specifiedBy: Option[String] = None): __Type

    Creates a new scalar type with the given name.

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

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

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

    l

    a list of types to unify

    returns

    the unified type if one could be found

    Example:
    1. unify(List(string, makeNonNull(string))) // => Some(__Type(SCALAR, Some("String")))
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. 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

Inherited from AnyRef

Inherited from Any

Ungrouped