c

pl.iterators.stir.common

NameUnmarshallerReceptacle

class NameUnmarshallerReceptacle[T] extends AnyRef

Source
NameReceptacle.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NameUnmarshallerReceptacle
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new NameUnmarshallerReceptacle(name: String, um: FromStringUnmarshaller[T])

Value Members

  1. def !(requiredValue: T): RequiredValueUnmarshallerReceptacle[T]

    Require the given value and extract nothing.

    Require the given value and extract nothing. Reject if it is missing or has a different value. Symbolic alias for requiredValue.

  2. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  3. final def ##: Int
    Definition Classes
    AnyRef → Any
  4. def *: RepeatedValueUnmarshallerReceptacle[T]

    Extract multiple occurrences as Iterable[String].

    Extract multiple occurrences as Iterable[String]. Symbolic alias for repeated.

  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def ?(default: T): NameDefaultUnmarshallerReceptacle[T]

    Extract the optional value as T, if it is missing use the given default value.

    Extract the optional value as T, if it is missing use the given default value. Symbolic alias for withDefault.

  7. def ?: NameOptionUnmarshallerReceptacle[T]

    Extract the optional value as Option[T].

    Extract the optional value as Option[T]. Symbolic alias for optional.

  8. def as[B](implicit unmarshaller: Unmarshaller[T, B]): NameUnmarshallerReceptacle[B]

    Extract the value as the specified type.

    Extract the value as the specified type. You need a matching Unmarshaller in scope for that to work.

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. val name: String
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def optional: NameOptionUnmarshallerReceptacle[T]

    Extract the optional value as Option[T].

    Extract the optional value as Option[T]. Symbolic alias for optional.

  21. def repeated: RepeatedValueUnmarshallerReceptacle[T]

    Extract multiple occurrences as Iterable[String].

  22. def requiredValue(requiredValue: T): RequiredValueUnmarshallerReceptacle[T]

    Require the given value and extract nothing.

    Require the given value and extract nothing. Reject if it is missing or has a different value.

  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. val um: FromStringUnmarshaller[T]
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. def withDefault(default: T): NameDefaultUnmarshallerReceptacle[T]

    Extract the optional value as T, if it is missing use the given default value.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped