Packages

object Migration

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Migration
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class AddCase(path: NodePath, node: MetaSchema) extends Migration with Product with Serializable
  2. final case class AddNode(path: NodePath, node: MetaSchema) extends Migration with Product with Serializable
  3. final case class ChangeType(path: NodePath, value: StandardType[_]) extends Migration with Product with Serializable
  4. final case class DecrementDimensions(path: NodePath, n: Int) extends Migration with Product with Serializable
  5. final case class DeleteNode(path: NodePath) extends Migration with Product with Serializable
  6. final case class IncrementDimensions(path: NodePath, n: Int) extends Migration with Product with Serializable
  7. sealed trait LabelTransformation extends AnyRef

    Represents a valid label transformation.

    Represents a valid label transformation.

    Not currently implemented but we can use this type to encode unambiguous string transformations applied to field and case labels. For example, converting from snake to camel case (or vica versa)

  8. final case class Optional(path: NodePath) extends Migration with Product with Serializable
  9. final case class Recursive(path: NodePath, relativeNodePath: NodePath, relativeMigration: Migration) extends Migration with Product with Serializable
  10. final case class Relabel(path: NodePath, tranform: LabelTransformation) extends Migration with Product with Serializable
  11. final case class Require(path: NodePath) extends Migration with Product with Serializable
  12. final case class UpdateFail(path: NodePath, message: String) extends Migration with 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def decrementDimensions(value: DynamicValue, path: List[String], n: Int): Either[String, DynamicValue]
    Attributes
    protected[schema]
  7. def deleteNode(value: DynamicValue, path: List[String]): Either[String, DynamicValue]
    Attributes
    protected[schema]
  8. def derive(from: MetaSchema, to: MetaSchema): Either[String, Chunk[Migration]]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def incrementDimension(value: DynamicValue, path: List[String], n: Int): Either[String, DynamicValue]
    Attributes
    protected[schema]
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def makeOptional(value: DynamicValue, path: List[String]): Either[String, DynamicValue]
    Attributes
    protected[schema]
  17. def migrateRecursive(value: DynamicValue, migration: Recursive): Either[String, DynamicValue]
    Attributes
    protected[schema]
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def relabel(value: DynamicValue, path: List[String], transformation: LabelTransformation): Either[String, DynamicValue]
    Attributes
    protected[schema]
  22. def require(value: DynamicValue, path: List[String]): Either[String, DynamicValue]
    Attributes
    protected[schema]
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. def updateFail(value: DynamicValue, path: List[String], newMessage: String): Either[String, DynamicValue]
    Attributes
    protected[schema]
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. object LabelTransformation

Inherited from AnyRef

Inherited from Any

Ungrouped