scala.tools.nsc.settings.AbsScalaSettings

SettingGroup

abstract class SettingGroup extends (AbsScalaSettings.this)#AbsSetting

*

Source
AbsScalaSettings.scala
Linear Supertypes
(AbsScalaSettings.this)#AbsSetting, (AbsScalaSettings.this)#AbsSettingValue, math.Ordered[(AbsScalaSettings.this)#Setting], Comparable[(AbsScalaSettings.this)#Setting], AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SettingGroup
  2. AbsSetting
  3. AbsSettingValue
  4. Ordered
  5. Comparable
  6. AnyRef
  7. Any
Implicitly
  1. by orderingToOrdered
  2. by any2stringadd
  3. by any2stringfmt
  4. by any2ArrowAssoc
  5. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SettingGroup(prefix: String)

Type Members

  1. abstract type T

    Definition Classes
    AbsSettingValue

Abstract Value Members

  1. abstract def isDefault: Boolean

    Definition Classes
    AbsSettingValue
  2. abstract def tryToSet(args: List[String]): Option[(AbsScalaSettings.this)#ResultOfTryToSet]

    After correct Setting has been selected, tryToSet is called with the remainder of the command line.

    After correct Setting has been selected, tryToSet is called with the remainder of the command line. It consumes any applicable arguments and returns the unconsumed ones.

    Attributes
    protected[scala.tools.nsc]
    Definition Classes
    AbsSetting
  3. abstract def value: T

    Definition Classes
    AbsSettingValue
  4. abstract def withAbbreviation(name: String): SettingGroup.this.type

    In mutable Settings, these return the same object with a var set.

    In mutable Settings, these return the same object with a var set. In immutable, of course they will return a new object, which means we can't use "this.type", at least not in a non-casty manner, which is unfortunate because we lose type information without it.

    ...but now they're this.type because of #3462. The immutable side doesn't exist yet anyway.

    Definition Classes
    AbsSetting
  5. abstract def withDeprecationMessage(msg: String): SettingGroup.this.type

    Definition Classes
    AbsSetting
  6. abstract def withHelpSyntax(help: String): SettingGroup.this.type

    Definition Classes
    AbsSetting

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): ((AbsScalaSettings.this)#SettingGroup, B)

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to ArrowAssoc[(AbsScalaSettings.this)#SettingGroup] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def <(that: (AbsScalaSettings.this)#Setting): Boolean

    Definition Classes
    Ordered
  7. def <=(that: (AbsScalaSettings.this)#Setting): Boolean

    Definition Classes
    Ordered
  8. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  10. def >(that: (AbsScalaSettings.this)#Setting): Boolean

    Definition Classes
    Ordered
  11. def >=(that: (AbsScalaSettings.this)#Setting): Boolean

    Definition Classes
    Ordered
  12. def abbreviations: List[String]

    Definition Classes
    AbsSetting
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def choices: List[String]

    Definition Classes
    AbsSetting
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. def compare(that: (AbsScalaSettings.this)#Setting): Int

    Definition Classes
    AbsSetting → Ordered
  17. def compareTo(that: (AbsScalaSettings.this)#Setting): Int

    Definition Classes
    Ordered → Comparable
  18. def dependencies: List[((AbsScalaSettings.this)#Setting, String)]

    Definition Classes
    AbsSetting
  19. def deprecationMessage: Option[String]

    Definition Classes
    AbsSetting
  20. def ensuring(cond: ((AbsScalaSettings.this)#SettingGroup) ⇒ Boolean, msg: ⇒ Any): (AbsScalaSettings.this)#SettingGroup

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to Ensuring[(AbsScalaSettings.this)#SettingGroup] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: ((AbsScalaSettings.this)#SettingGroup) ⇒ Boolean): (AbsScalaSettings.this)#SettingGroup

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to Ensuring[(AbsScalaSettings.this)#SettingGroup] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean, msg: ⇒ Any): (AbsScalaSettings.this)#SettingGroup

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to Ensuring[(AbsScalaSettings.this)#SettingGroup] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean): (AbsScalaSettings.this)#SettingGroup

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to Ensuring[(AbsScalaSettings.this)#SettingGroup] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. def equals(that: Any): Boolean

    Equality tries to sidestep all the drama and define it simply and in one place: two AbsSetting objects are equal if their names and values compare equal.

    Equality tries to sidestep all the drama and define it simply and in one place: two AbsSetting objects are equal if their names and values compare equal.

    Definition Classes
    AbsSetting → AnyRef → Any
  26. def errorAndValue[T](msg: String, x: T): T

    Issue error and return

    Issue error and return

    Definition Classes
    AbsSetting
  27. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  28. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  29. final def getClass(): Class[_]

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

    Definition Classes
    AbsSetting → AnyRef → Any
  31. def helpDescription: String

    Definition Classes
    SettingGroupAbsSetting
  32. def helpSyntax: String

    Definition Classes
    AbsSetting
  33. def internalOnly(): SettingGroup.this.type

    Definition Classes
    AbsSetting
  34. def isAdvanced: Boolean

    These categorizations are so the help output shows -X and -P among the standard options and -Y among the advanced options.

    These categorizations are so the help output shows -X and -P among the standard options and -Y among the advanced options.

    Definition Classes
    AbsSetting
  35. def isDeprecated: Boolean

    Definition Classes
    AbsSetting
  36. def isForDebug: Boolean

    Definition Classes
    AbsSetting
  37. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  38. def isInternalOnly: Boolean

    Definition Classes
    AbsSetting
  39. def isPrivate: Boolean

    Definition Classes
    AbsSetting
  40. def isStandard: Boolean

    Definition Classes
    AbsSetting
  41. def name: String

    Definition Classes
    SettingGroupAbsSetting
  42. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  43. final def notify(): Unit

    Definition Classes
    AnyRef
  44. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  45. val prefix: String

  46. def respondsTo(label: String): Boolean

    Definition Classes
    AbsSetting
  47. def shouldStopProcessing: Boolean

    Definition Classes
    AbsSetting
  48. def stopProcessing(): SettingGroup.this.type

    Definition Classes
    AbsSetting
  49. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  50. def toString(): String

    Definition Classes
    AbsSetting → AnyRef → Any
  51. def tryToSetColon(args: List[String]): Option[(AbsScalaSettings.this)#ResultOfTryToSet]

    Commands which can take lists of arguments in form -Xfoo:bar,baz override this method and accept them as a list.

    Commands which can take lists of arguments in form -Xfoo:bar,baz override this method and accept them as a list. It returns List[String] for consistency with tryToSet, and should return its incoming arguments unmodified on failure, and Nil on success.

    Attributes
    protected[scala.tools.nsc]
    Definition Classes
    AbsSetting
  52. def tryToSetFromPropertyValue(s: String): Unit

    Attempt to set from a properties file style property value.

    Attempt to set from a properties file style property value. Currently used by Eclipse SDT only.

    Definition Classes
    AbsSetting
  53. def unparse: List[String]

    Definition Classes
    SettingGroupAbsSetting
  54. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  57. def [B](y: B): ((AbsScalaSettings.this)#SettingGroup, B)

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to ArrowAssoc[(AbsScalaSettings.this)#SettingGroup] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implict Value Members

  1. def <(that: (AbsScalaSettings.this)#SettingGroup): Boolean

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to math.Ordered[(AbsScalaSettings.this)#SettingGroup] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[(AbsScalaSettings.this)#SettingGroup] 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:
    (settingGroup: math.Ordered[(AbsScalaSettings.this)#SettingGroup]).<(that)
    Definition Classes
    Ordered
  2. def <=(that: (AbsScalaSettings.this)#SettingGroup): Boolean

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to math.Ordered[(AbsScalaSettings.this)#SettingGroup] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[(AbsScalaSettings.this)#SettingGroup] 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:
    (settingGroup: math.Ordered[(AbsScalaSettings.this)#SettingGroup]).<=(that)
    Definition Classes
    Ordered
  3. def >(that: (AbsScalaSettings.this)#SettingGroup): Boolean

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to math.Ordered[(AbsScalaSettings.this)#SettingGroup] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[(AbsScalaSettings.this)#SettingGroup] 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:
    (settingGroup: math.Ordered[(AbsScalaSettings.this)#SettingGroup]).>(that)
    Definition Classes
    Ordered
  4. def >=(that: (AbsScalaSettings.this)#SettingGroup): Boolean

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to math.Ordered[(AbsScalaSettings.this)#SettingGroup] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[(AbsScalaSettings.this)#SettingGroup] 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:
    (settingGroup: math.Ordered[(AbsScalaSettings.this)#SettingGroup]).>=(that)
    Definition Classes
    Ordered
  5. def compare(that: (AbsScalaSettings.this)#SettingGroup): Int

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to math.Ordered[(AbsScalaSettings.this)#SettingGroup] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[(AbsScalaSettings.this)#SettingGroup] 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:
    (settingGroup: math.Ordered[(AbsScalaSettings.this)#SettingGroup]).compare(that)
    Definition Classes
    Ordered
  6. def compareTo(that: (AbsScalaSettings.this)#SettingGroup): Int

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to math.Ordered[(AbsScalaSettings.this)#SettingGroup] performed by method orderingToOrdered in scala.math.Ordered. This conversion will take place only if an implicit value of type math.Ordering[(AbsScalaSettings.this)#SettingGroup] 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:
    (settingGroup: math.Ordered[(AbsScalaSettings.this)#SettingGroup]).compareTo(that)
    Definition Classes
    Ordered → Comparable
  7. val self: Any

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (settingGroup: StringAdd).self
    Definition Classes
    StringAdd
  8. val self: Any

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (settingGroup: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: (AbsScalaSettings.this)#SettingGroup

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to ArrowAssoc[(AbsScalaSettings.this)#SettingGroup] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (settingGroup: ArrowAssoc[(AbsScalaSettings.this)#SettingGroup]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: (AbsScalaSettings.this)#SettingGroup

    Implicit information
    This member is added by an implicit conversion from (AbsScalaSettings.this)#SettingGroup to Ensuring[(AbsScalaSettings.this)#SettingGroup] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (settingGroup: Ensuring[(AbsScalaSettings.this)#SettingGroup]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from (AbsScalaSettings.this)#AbsSetting

Inherited from (AbsScalaSettings.this)#AbsSettingValue

Inherited from math.Ordered[(AbsScalaSettings.this)#Setting]

Inherited from Comparable[(AbsScalaSettings.this)#Setting]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion orderingToOrdered from (AbsScalaSettings.this)#SettingGroup to math.Ordered[(AbsScalaSettings.this)#SettingGroup]

Inherited by implicit conversion any2stringadd from (AbsScalaSettings.this)#SettingGroup to StringAdd

Inherited by implicit conversion any2stringfmt from (AbsScalaSettings.this)#SettingGroup to StringFormat

Inherited by implicit conversion any2ArrowAssoc from (AbsScalaSettings.this)#SettingGroup to ArrowAssoc[(AbsScalaSettings.this)#SettingGroup]

Inherited by implicit conversion any2Ensuring from (AbsScalaSettings.this)#SettingGroup to Ensuring[(AbsScalaSettings.this)#SettingGroup]

Ungrouped