case class ValueParam[Orig, A, F[_]] extends Param[Orig, A, F] with Product with Serializable

A parameter with a normal value..

Orig

The type the parameter originally has.

A

The type the parameter has after a bit of processing.

F

The context of the parameter, either Id or Option currently.

Source
params.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ValueParam
  2. Serializable
  3. Product
  4. Equals
  5. Param
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val channelTypes: Seq[ChannelType]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  7. val contramap: (A) => Orig
  8. val description: String
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. val fTransformer: FTransformer[F]
    Definition Classes
    ValueParamParam
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. def imap[B](map: (A) => B)(contramap: (B) => A): ValueParam[Orig, B, F]

    imap the parameter.

    imap the parameter.

    Definition Classes
    ValueParamParam
  13. def imapWithResolve[B](map: (A, ApplicationCommandInteractionDataResolved) => Option[B])(contramap: (B) => A): ValueParam[Orig, B, F]

    imap the parameter with the resolved data.

    imap the parameter with the resolved data.

    Definition Classes
    ValueParamParam
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. val map: (Orig, ApplicationCommandInteractionDataResolved) => Option[A]
  16. val name: String

    Name of the parameter.

    Name of the parameter.

    Definition Classes
    ValueParamParam
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def notRequired: ValueParam[Orig, A, Option]

    Sets the parameter as optional.

  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  21. def productElementNames: Iterator[String]
    Definition Classes
    Product
  22. def required: ValueParam[Orig, A, Id]

    Sets the parameter as required.

  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toCommandOption: ApplicationCommandOption

    Convert this parameter to an ApplicationCommandOption

    Convert this parameter to an ApplicationCommandOption

    Definition Classes
    ValueParamParam
  25. val tpe: Aux[Orig]

    Type of the parameter.

    Type of the parameter.

    Definition Classes
    ValueParamParam
  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 ~[B, G[_]](other: Param[_, B, G]): ParamList[~[F[A], G[B]]]

    Chain this parameter together with another.

    Chain this parameter together with another.

    Definition Classes
    Param

Deprecated Value Members

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

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Param[Orig, A, F]

Inherited from AnyRef

Inherited from Any

Ungrouped