com.kinja

soy

package soy

Visibility
  1. Public
  2. All

Type Members

  1. trait DefaultSoyWrites extends AnyRef

    Provides conversion from base types to SoyValue.

  2. final case class SoyBoolean(value: Boolean) extends AnyVal with SoyValue with Product with Serializable

  3. final case class SoyFloat(value: Double) extends AnyVal with SoyValue with Product with Serializable

  4. final case class SoyInt(value: Int) extends AnyVal with SoyValue with Product with Serializable

  5. final case class SoyList(value: Seq[SoyValue]) extends AnyVal with SoyValue with Product with Serializable

  6. final case class SoyMap(value: Map[String, SoyValue]) extends AnyVal with SoyValue with Product with Serializable

  7. trait SoyMapWrites[-T] extends SoyWrites[T]

    The class of types that can be converted into a SoyMap.

  8. final case class SoyString(value: String) extends AnyVal with SoyValue with Product with Serializable

  9. sealed trait SoyValue extends Any

    Base trait of types which can be used in Google Cloure Templatates.

  10. trait SoyWrites[-T] extends DefaultSoyWrites

    Implement this trait for an arbitrary type to allow it being converted for use in Google Closure Templates.

Value Members

  1. object Soy

    Provides convenience methods for building SoyValues.

  2. object SoyMacroImpl

  3. object SoyNull extends SoyValue with Product with Serializable

  4. object SoyWrites extends DefaultSoyWrites

    Default converters.

  5. package util

Ungrouped