org.coursera.courier.generator

TypeConversions

object TypeConversions

Provides conversions between the various type systems involved in pegasus data binding generation.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TypeConversions
  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 PrimitiveMapping(schema: DataSchema, scalaType: String, isValueType: Boolean, pegasusType: String, javaClass: Class[_]) extends Product with Serializable

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. def anyToLiteral(any: AnyRef): String

    Provided anyRef must be a "pegasus" data type: java.

    Provided anyRef must be a "pegasus" data type: java.lang.* primitives, ByteString, DataMap or DataList.

    THe returned String is scala source that evaluates to the provided any ref.

    E.g.

    For an float of 3.14, the returned string would be 3.14f (unquoted), which in scala evaluates to the 3.14 float.

    For a string of "text" the returned string would be "text" (with quotes).

    For A DataMap containing { "message": "hello!" }, the returned string would be: DataTemplates.mapLiteral("""{ "message": "hello!" }"""), which also evaluates to the provided DataMap provided.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. def isScalaValueType(schema: DataSchema): Boolean

  16. def lookupJavaClass(schema: PrimitiveDataSchema): Class[_]

  17. def lookupPegasusType(schema: PrimitiveDataSchema): String

  18. def lookupScalaType(schema: PrimitiveDataSchema): String

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

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

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

    Definition Classes
    AnyRef
  22. val primitiveSchemas: Set[DataSchema]

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

    Definition Classes
    AnyRef
  24. def toLiteral(data: DataList): String

  25. def toLiteral(data: DataMap): String

  26. def toLiteral(string: String): String

  27. def toLiteral(bytes: ByteString): String

  28. def toLiteral(boolean: Boolean): String

  29. def toLiteral(double: Double): String

  30. def toLiteral(float: Float): String

  31. def toLiteral(long: Long): String

  32. def toLiteral(int: Integer): String

  33. def toString(): String

    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped