Trait

io.fintrospect.parameters

MandatoryParameter

Related Doc: package parameters

Permalink

trait MandatoryParameter[From, T, Bnd <: Binding] extends Mandatory[From, T] with ExtractableParameter[From, T] with Rebindable[From, T, Bnd]

Linear Supertypes
Rebindable[From, T, Bnd], Bindable[T, Bnd], ExtractableParameter[From, T], Parameter, Mandatory[From, T], Extractor[From, T], Retrieval[From, T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MandatoryParameter
  2. Rebindable
  3. Bindable
  4. ExtractableParameter
  5. Parameter
  6. Mandatory
  7. Extractor
  8. Retrieval
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def -->(value: T): Iterable[Bnd]

    Permalink

    Bind the value to this parameter

    Bind the value to this parameter

    returns

    the binding

    Definition Classes
    Bindable
  2. abstract def <--?(from: From): Extraction[T]

    Permalink

    Attempt to manually deserialise from the message object.

    Attempt to manually deserialise from the message object.

    Definition Classes
    Extractor
  3. abstract val description: Option[String]

    Permalink
    Definition Classes
    Parameter
  4. abstract val name: String

    Permalink
    Definition Classes
    Parameter
  5. abstract val paramType: ParamType

    Permalink
    Definition Classes
    Parameter
  6. abstract val where: String

    Permalink
    Definition Classes
    Parameter

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def <--(from: From): T

    Permalink

    Extract the value from the target object.

    Extract the value from the target object. Throws on failure, but that shouldn't be a problem as the pre-validation stage for declared parameters and bodies handles the failure before user code is entered.

    Definition Classes
    MandatoryRetrieval
  4. def <--?(from: From, reason: String, predicate: (T) ⇒ Boolean): Extraction[T]

    Permalink

    Attempt to manually deserialise from the message object, using a validation predicate and reason for failure.

    Attempt to manually deserialise from the message object, using a validation predicate and reason for failure.

    Definition Classes
    ExtractableParameter
  5. def <->(from: From): Iterable[Bnd]

    Permalink
    Definition Classes
    MandatoryParameterRebindable
  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def extract(from: From, reason: String, predicate: (T) ⇒ Boolean): Extraction[T]

    Permalink

    Attempt to manually deserialise from the message object, using a validation predicate and reason for failure.

    Attempt to manually deserialise from the message object, using a validation predicate and reason for failure. User-friendly synonym for <--?(), which is why the method is final.

    Definition Classes
    ExtractableParameter
  12. final def extract(from: From): Extraction[T]

    Permalink

    Attempt to manually deserialise from the message object.

    Attempt to manually deserialise from the message object. User-friendly synonym for <--?(), which is why the method is final.

    Definition Classes
    Extractor
  13. def extractFrom[T](deserialize: (Seq[String]) ⇒ Try[T], fromInput: Option[Seq[String]]): Extraction[T]

    Permalink
    Attributes
    protected
    Definition Classes
    Parameter
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def from(from: From): T

    Permalink

    Extract the value from the target object.

    Extract the value from the target object. Throws on failure, but that shouldn't be a problem as the pre-validation stage for declared parameters and bodies handles the failure before user code is entered. User-friendly synonym for <--(), which is why the method is final.

    Definition Classes
    Retrieval
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def of(value: T): Iterable[Bnd]

    Permalink

    Bind the value to this parameter User-friendly synonym for -->(), which is why the method is final.

    Bind the value to this parameter User-friendly synonym for -->(), which is why the method is final.

    returns

    the binding

    Definition Classes
    Bindable
  23. final def rebind(from: From): Iterable[Bnd]

    Permalink

    User-friendly synonym for <->(), which is why the method is final.

    User-friendly synonym for <->(), which is why the method is final.

    Definition Classes
    Rebindable
  24. val required: Boolean

    Permalink
    Definition Classes
    Mandatory
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    Parameter → AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Rebindable[From, T, Bnd]

Inherited from Bindable[T, Bnd]

Inherited from ExtractableParameter[From, T]

Inherited from Parameter

Inherited from Mandatory[From, T]

Inherited from Extractor[From, T]

Inherited from Retrieval[From, T]

Inherited from AnyRef

Inherited from Any

Ungrouped