trait OptionalFieldOperations extends AnyRef
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- OptionalFieldOperations
- 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
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def modifyOrDeleteField[T](f: (T) => Option[T])(implicit arg0: Reader[T], arg1: JsonWriter[T]): Operation
The
modifyOrDeleteFieldoperation works together with theoptionalFieldlens.The
modifyOrDeleteFieldoperation works together with theoptionalFieldlens. The passed function is called for every existing field. If the function returnsSome(value), this will become the new value. If the function returnsNonethe field will be deleted. - final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def setOrUpdateField[T](default: => T)(f: (T) => T)(implicit arg0: Reader[T], arg1: JsonWriter[T]): Operation
The
setOrUpdateFieldoperation sets or updates an optionalField. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def updateOptionalField[T](f: (Option[T]) => Option[T])(implicit arg0: Reader[T], arg1: JsonWriter[T]): Operation
The
updateOptionalFieldoperation works together with theoptionalFieldlens.The
updateOptionalFieldoperation works together with theoptionalFieldlens. It allows to a) create a previously missing field b) update an existing field value c) remove an existing field d) ignore a missing field. - final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()