c

pl.iterators.stir.common

NameReceptacle

class NameReceptacle[T] extends AnyRef

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

Instance Constructors

  1. new NameReceptacle(name: String)

Value Members

  1. def ![B](requiredValue: B): RequiredValueReceptacle[B]

    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 *: RepeatedValueReceptacle[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 ?[B](default: B): NameDefaultReceptacle[B]

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

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

  7. def ?: NameOptionReceptacle[T]

    Extract the optional value as Option[String].

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

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

    Extract the value as the specified type with the given Unmarshaller.

  9. def as[B]: NameReceptacle[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.

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

    Extract the optional value as Option[String].

  22. def repeated: RepeatedValueReceptacle[T]

    Extract multiple occurrences as Iterable[String].

  23. def requiredValue[B](requiredValue: B): RequiredValueReceptacle[B]

    Require the given value and extract nothing.

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

  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  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[B](default: B): NameDefaultReceptacle[B]

    Extract the optional value as String, 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