Packages

case class Choice(name: String, help: String = "", expandsTo: List[Choice] = Nil, requiresSelections: Boolean = false) extends Val with Product with Serializable

Source
MutableSettings.scala
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Choice
  2. Product
  3. Equals
  4. Val
  5. Value
  6. Serializable
  7. Ordered
  8. Comparable
  9. AnyRef
  10. Any
Implicitly
  1. by orderingToOrdered
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Choice(name: String, help: String = "", expandsTo: List[Choice] = Nil, requiresSelections: Boolean = false)

Value Members

  1. def +(v: MultiChoiceEnumeration.Value): MultiChoiceEnumeration.ValueSet
    Definition Classes
    Value
  2. def <(that: MultiChoiceEnumeration.Value): Boolean
    Definition Classes
    Ordered
  3. def <=(that: MultiChoiceEnumeration.Value): Boolean
    Definition Classes
    Ordered
  4. def >(that: MultiChoiceEnumeration.Value): Boolean
    Definition Classes
    Ordered
  5. def >=(that: MultiChoiceEnumeration.Value): Boolean
    Definition Classes
    Ordered
  6. def compare(that: MultiChoiceEnumeration.Value): Int
    Definition Classes
    Value → Ordered
  7. def compareTo(that: MultiChoiceEnumeration.Value): Int
    Definition Classes
    Ordered → Comparable
  8. def equals(other: Any): Boolean
    Definition Classes
    Value → AnyRef → Any
  9. val expandsTo: List[Choice]
  10. def hashCode(): Int
    Definition Classes
    Value → AnyRef → Any
  11. val help: String
  12. def id: Int
    Definition Classes
    Val → Value
  13. val name: String
  14. def productElementNames: Iterator[String]
    Definition Classes
    Product
  15. val requiresSelections: Boolean
  16. var selections: List[String]
  17. def toString(): String
    Definition Classes
    Val → AnyRef → Any

Shadowed Implicit Value Members

  1. def <(that: Choice): Boolean
    Implicit
    This member is added by an implicit conversion from Choice tomath.Ordered[Choice] performed by method orderingToOrdered in scala.math.Ordered.This conversion will take place only if an implicit value of type math.Ordering[Choice] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (choice: math.Ordered[Choice]).<(that)
    Definition Classes
    Ordered
  2. def <=(that: Choice): Boolean
    Implicit
    This member is added by an implicit conversion from Choice tomath.Ordered[Choice] performed by method orderingToOrdered in scala.math.Ordered.This conversion will take place only if an implicit value of type math.Ordering[Choice] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (choice: math.Ordered[Choice]).<=(that)
    Definition Classes
    Ordered
  3. def >(that: Choice): Boolean
    Implicit
    This member is added by an implicit conversion from Choice tomath.Ordered[Choice] performed by method orderingToOrdered in scala.math.Ordered.This conversion will take place only if an implicit value of type math.Ordering[Choice] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (choice: math.Ordered[Choice]).>(that)
    Definition Classes
    Ordered
  4. def >=(that: Choice): Boolean
    Implicit
    This member is added by an implicit conversion from Choice tomath.Ordered[Choice] performed by method orderingToOrdered in scala.math.Ordered.This conversion will take place only if an implicit value of type math.Ordering[Choice] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (choice: math.Ordered[Choice]).>=(that)
    Definition Classes
    Ordered
  5. def compare(that: Choice): Int
    Implicit
    This member is added by an implicit conversion from Choice tomath.Ordered[Choice] performed by method orderingToOrdered in scala.math.Ordered.This conversion will take place only if an implicit value of type math.Ordering[Choice] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (choice: math.Ordered[Choice]).compare(that)
    Definition Classes
    Ordered
  6. def compareTo(that: Choice): Int
    Implicit
    This member is added by an implicit conversion from Choice tomath.Ordered[Choice] performed by method orderingToOrdered in scala.math.Ordered.This conversion will take place only if an implicit value of type math.Ordering[Choice] is in scope.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (choice: math.Ordered[Choice]).compareTo(that)
    Definition Classes
    Ordered → Comparable