object ProjectionExpression

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

Type Members

  1. trait DynamodbEquality[A, -B] extends AnyRef
    Annotations
    @implicitNotFound( ... )
  2. final case class ListElement(parent: ProjectionExpression, index: Int) extends ProjectionExpression with Product with Serializable
  3. final case class MapElement(parent: ProjectionExpression, key: String) extends ProjectionExpression with Product with Serializable
  4. sealed trait RefersToString[-A] extends AnyRef
    Annotations
    @implicitNotFound( ... )
  5. type Typed[From0, To0] = ProjectionExpression { ... /* 2 definitions in type refinement */ }

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def $(s: String): Typed[_, Nothing]

    Unsafe version of parse that throws an exception rather than returning an Either

    Unsafe version of parse that throws an exception rather than returning an Either

    See also

    parse

  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def accessors[A](implicit s: Schema[A]): Accessors[(builder)#Lens, (builder)#Prism, (builder)#Traversal]
  6. def apply(name: String): ProjectionExpression
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val builder: AccessorBuilder { ... /* 3 definitions in type refinement */ }
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. def parse(s: String): Either[String, ProjectionExpression]

    Parses a string into an ProjectionExpression eg

    Parses a string into an ProjectionExpression eg

    parse("foo.bar[9].baz"")
    // Right(MapElement(ListElement(MapElement(Root(bar),baz),9),baz))
    parse(fo$$o.ba$$r[9].ba$$z)
    // Left("error with fo$$o,error with ba$$r[9],error with ba$$z")
    s

    Projection expression as a string

    returns

    either a Right of ProjectionExpression if successful, else a list of errors in a string

  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  25. object DynamodbEquality
  26. object RefersToString
  27. object Root extends ProjectionExpression with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped