o

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
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: 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. def anyToLiteral(any: AnyRef): String

    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
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def isScalaValueType(schema: DataSchema): Boolean
  14. def lookupJavaClass(schema: PrimitiveDataSchema): Class[_]
  15. def lookupPegasusType(schema: PrimitiveDataSchema): String
  16. def lookupScalaType(schema: PrimitiveDataSchema): String
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. val primitiveSchemas: Set[DataSchema]
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toLiteral(data: DataList): String
  23. def toLiteral(data: DataMap): String
  24. def toLiteral(string: String): String
  25. def toLiteral(bytes: ByteString): String
  26. def toLiteral(boolean: Boolean): String
  27. def toLiteral(double: Double): String
  28. def toLiteral(float: Float): String
  29. def toLiteral(long: Long): String
  30. def toLiteral(int: Integer): String
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped