case class ChoiceParam[Orig, A, F[_]] extends Param[Orig, A, F] with Product with Serializable
A parameter that allows multiple choices for the user.
- 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
- Alphabetic
- By Inheritance
- ChoiceParam
- Serializable
- Product
- Equals
- Param
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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
- val autocomplete: Option[(String) => Seq[Orig]]
- val choices: Map[String, Orig]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- val contramap: (A) => Orig
- val description: String
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val fTransformer: FTransformer[F]
- Definition Classes
- ChoiceParam → Param
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def imap[B](map: (A) => B)(contramap: (B) => A): ChoiceParam[Orig, B, F]
imap the parameter.
imap the parameter.
- Definition Classes
- ChoiceParam → Param
- def imapWithResolve[B](map: (A, ApplicationCommandInteractionDataResolved) => Option[B])(contramap: (B) => A): ChoiceParam[Orig, B, F]
imap the parameter with the resolved data.
imap the parameter with the resolved data.
- Definition Classes
- ChoiceParam → Param
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val makeOptionChoice: (String, Orig) => ApplicationCommandOptionChoice
- val map: (Orig, ApplicationCommandInteractionDataResolved) => Option[A]
- val maxValue: Option[Either[Int, Double]]
- val minValue: Option[Either[Int, Double]]
- val name: String
Name of the parameter.
Name of the parameter.
- Definition Classes
- ChoiceParam → Param
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def noAutocomplete: ChoiceParam[Orig, A, F]
- def notRequired: ChoiceParam[Orig, A, Option]
Sets the parameter as optional.
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- val processAutoComplete: (Seq[Orig]) => Seq[Orig]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def required: ChoiceParam[Orig, A, Id]
Sets the parameter as required.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toCommandOption: ApplicationCommandOption
Convert this parameter to an ApplicationCommandOption
Convert this parameter to an ApplicationCommandOption
- Definition Classes
- ChoiceParam → Param
- val tpe: Aux[Orig]
Type of the parameter.
Type of the parameter.
- Definition Classes
- ChoiceParam → Param
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withAutocomplete(complete: (String) => Seq[A]): ChoiceParam[Orig, A, F]
Sets the autocomplete to use for the parameter.
Sets the autocomplete to use for the parameter. Can't be set at the same time as choices.
- def withChoices(choices: Seq[String])(implicit ev: =:=[String, A]): ChoiceParam[Orig, A, F]
Sets the choices for the parameter.
Sets the choices for the parameter. Can't be set at the same time as autocomplete.
- def withChoices(choices: Map[String, A]): ChoiceParam[Orig, A, F]
Sets the choices for the parameter.
Sets the choices for the parameter. Can't be set at the same time as autocomplete.
- 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