play.api.libs.json

JsLookup

Related Doc: package json

final case class JsLookup(result: JsLookupResult) extends AnyVal with Product with Serializable

A value representing the value at a particular JSON path, either an actual JSON node or undefined.

Source
JsLookup.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyVal, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JsLookup
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyVal
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JsLookup(result: JsLookupResult)

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  2. final def ##(): Int

    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  4. def \(fieldName: String): JsLookupResult

    Return the property corresponding to the fieldName, supposing we have a JsObject.

    Return the property corresponding to the fieldName, supposing we have a JsObject.

    fieldName

    the name of the property to look up

    returns

    the resulting JsValue wrapped in a JsLookup. If the current node is not a JsObject or doesn't have the property, a JsUndefined will be returned.

  5. def \\(fieldName: String): Seq[JsValue]

    Look up fieldName in the current object and all descendants.

    Look up fieldName in the current object and all descendants.

    returns

    the list of matching nodes

  6. def apply(index: Int): JsLookupResult

    Access a value of this array.

    Access a value of this array.

    index

    Element index.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def getClass(): Class[_ <: AnyVal]

    Definition Classes
    AnyVal → Any
  9. def head: JsLookupResult

    Access the head of this array.

  10. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  11. def last: JsLookupResult

    Access the last element of this array.

  12. val result: JsLookupResult

  13. def tail: JsLookupResult

    Access the tail of this array.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyVal

Inherited from Any

Ungrouped