final case class Argument(name: String, tpe: ArgumentType, defaults: Map[MaybeRate, ArgumentValue], rates: Map[MaybeRate, RateConstraint]) extends Product with Serializable
A UGen client-side (logical) input argument.
- name
the name of the argument. On the server-side UGen inputs do not have argument names, so this is purely for the user-interface. It will be the argument name of the constructor arguments of the UGen class.
- tpe
the argument type, such as graph element
GE
or integer.- defaults
default values for the argument, as specified depending on the UGen's calculation rate.
- rates
constraints for the argument's own rate, as specified depending on this UGen's calculation rate.
- Alphabetic
- By Inheritance
- Argument
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Argument(name: String, tpe: ArgumentType, defaults: Map[MaybeRate, ArgumentValue], rates: Map[MaybeRate, RateConstraint])
- name
the name of the argument. On the server-side UGen inputs do not have argument names, so this is purely for the user-interface. It will be the argument name of the constructor arguments of the UGen class.
- tpe
the argument type, such as graph element
GE
or integer.- defaults
default values for the argument, as specified depending on the UGen's calculation rate.
- rates
constraints for the argument's own rate, as specified depending on this UGen's calculation rate.
Value Members
- val defaults: Map[MaybeRate, ArgumentValue]
- val name: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val rates: Map[MaybeRate, RateConstraint]
- def toString(): String
- Definition Classes
- Argument → AnyRef → Any
- val tpe: ArgumentType