object Path extends Path with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Path
- Serializable
- Serializable
- Product
- Equals
- Path
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++(other: Path): Path
- Definition Classes
- Path
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
\(child: PathNode): Path
- Definition Classes
- Path
-
def
\(idx: Int): Path
- Definition Classes
- Path
-
def
\(key: String): Path
- Definition Classes
- Path
- def apply(path: List[PathNode] = Nil): Path
- def apply(path: String): Path
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
canEqual(o: Any): Boolean
- Definition Classes
- Path
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
compose(p: Path): Path
Aggregate 2 paths
Aggregate 2 paths
(Path \ "foo" \ "bar") .andThen(Path \ "baz") == (Path \ "foo" \ "bar" \ "baz")
- Definition Classes
- Path
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(o: Any): Boolean
- Definition Classes
- Path → AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
from[I]: Deferred[I]
- Definition Classes
- Path
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- Path → AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
val
path: List[PathNode]
- Definition Classes
- Path
-
def
read[I, O](implicit r: (Path) ⇒ RuleLike[I, O]): Rule[I, O]
- Definition Classes
- Path
-
def
read[I, J, O](sub: ⇒ RuleLike[J, O])(implicit r: (Path) ⇒ RuleLike[I, J]): Rule[I, O]
- Definition Classes
- Path
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Path → AnyRef → Any
- def unapply(p: Path): Option[List[PathNode]]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
write[I, J, O](format: ⇒ WriteLike[I, J])(implicit w: (Path) ⇒ WriteLike[J, O]): Write[I, O]
Creates a Writes the serialize data to the desired output type using a provided format.
Creates a Writes the serialize data to the desired output type using a provided format. *
val w = (Path \ "date").write(date("yyyy-MM-dd"")) w.writes(new Date()) == Json.obj("date" -> "2013-10-3")
- Definition Classes
- Path
-
def
write[I, O](implicit w: (Path) ⇒ WriteLike[I, O]): Write[I, O]
Creates a Writes the serialize data to the desired output type
Creates a Writes the serialize data to the desired output type
val contact = Contact("Julien", "Tournay") implicit def contactWrite = (Path \ "firstname").write[String, UrlFormEncoded] contactWrite.writes(contact) shouldBe Map("firstname" -> "Julien")
- Definition Classes
- Path