Object

org.coursera.courier.generator

TypeConversions

Related Doc: package generator

Permalink

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
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

    Permalink

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def anyToLiteral(any: AnyRef): String

    Permalink

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

    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.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

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

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

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

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

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

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

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

    Permalink
  15. def lookupPegasusType(schema: PrimitiveDataSchema): String

    Permalink
  16. def lookupScalaType(schema: PrimitiveDataSchema): String

    Permalink
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. val primitiveSchemas: Set[DataSchema]

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

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

    Permalink
  23. def toLiteral(data: DataMap): String

    Permalink
  24. def toLiteral(string: String): String

    Permalink
  25. def toLiteral(bytes: ByteString): String

    Permalink
  26. def toLiteral(boolean: Boolean): String

    Permalink
  27. def toLiteral(double: Double): String

    Permalink
  28. def toLiteral(float: Float): String

    Permalink
  29. def toLiteral(long: Long): String

    Permalink
  30. def toLiteral(int: Integer): String

    Permalink
  31. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped