Class

scala.tools.nsc.settings.MutableSettings

PrefixSetting

Related Doc: package MutableSettings

Permalink

class PrefixSetting extends Setting

A special setting for accumulating arguments like -Dfoo=bar.

Source
MutableSettings.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PrefixSetting
  2. Setting
  3. Mutable
  4. SettingValue
  5. AbsSetting
  6. AbsSettingValue
  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. All

Type Members

  1. type T = collection.immutable.List[String]

    Permalink
    Definition Classes
    PrefixSetting → AbsSettingValue

Value Members

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

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

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

    Permalink
    Implicit information
    This member is added by an implicit conversion from PrefixSetting to any2stringadd[PrefixSetting] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (PrefixSetting, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from PrefixSetting to ArrowAssoc[PrefixSetting] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def <(that: Setting): Boolean

    Permalink
    Definition Classes
    Ordered
  6. def <=(that: Setting): Boolean

    Permalink
    Definition Classes
    Ordered
  7. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  8. def >(that: Setting): Boolean

    Permalink
    Definition Classes
    Ordered
  9. def >=(that: Setting): Boolean

    Permalink
    Definition Classes
    Ordered
  10. def abbreviations: List[String]

    Permalink
    Definition Classes
    SettingAbsSetting
  11. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  12. def choices: List[String]

    Permalink
    Definition Classes
    AbsSetting
  13. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  14. def compare(that: Setting): Int

    Permalink
    Definition Classes
    AbsSetting → Ordered
  15. def compareTo(that: Setting): Int

    Permalink
    Definition Classes
    Ordered → Comparable
  16. def dependencies: List[(Setting, String)]

    Permalink
    Definition Classes
    SettingAbsSetting
  17. def dependsOn(s: Setting, value: String): PrefixSetting.this.type

    Permalink
    Definition Classes
    Setting
  18. def deprecationMessage: Option[String]

    Permalink
    Definition Classes
    SettingAbsSetting
  19. def ensuring(cond: (PrefixSetting) ⇒ Boolean, msg: ⇒ Any): PrefixSetting

    Permalink
    Implicit information
    This member is added by an implicit conversion from PrefixSetting to Ensuring[PrefixSetting] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: (PrefixSetting) ⇒ Boolean): PrefixSetting

    Permalink
    Implicit information
    This member is added by an implicit conversion from PrefixSetting to Ensuring[PrefixSetting] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean, msg: ⇒ Any): PrefixSetting

    Permalink
    Implicit information
    This member is added by an implicit conversion from PrefixSetting to Ensuring[PrefixSetting] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean): PrefixSetting

    Permalink
    Implicit information
    This member is added by an implicit conversion from PrefixSetting to Ensuring[PrefixSetting] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. final def eq(arg0: AnyRef): Boolean

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

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

    Permalink

    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.

    that

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

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

    Permalink

    Issue error and return

    Issue error and return

    Definition Classes
    AbsSetting
  26. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  27. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from PrefixSetting to StringFormat[PrefixSetting] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  28. final def getClass(): Class[_]

    Permalink

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  29. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AbsSetting → AnyRef → Any
  30. val helpDescription: String

    Permalink
    Definition Classes
    SettingAbsSetting
  31. def helpSyntax: String

    Permalink
    Definition Classes
    SettingAbsSetting
  32. def internalOnly(): PrefixSetting.this.type

    Permalink
    Definition Classes
    AbsSetting
  33. def isAdvanced: Boolean

    Permalink

    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
  34. def isDefault: Boolean

    Permalink
    Definition Classes
    SettingValue → AbsSettingValue
  35. def isDeprecated: Boolean

    Permalink
    Definition Classes
    AbsSetting
  36. def isForDebug: Boolean

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

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  38. def isInternalOnly: Boolean

    Permalink
    Definition Classes
    AbsSetting
  39. def isPrivate: Boolean

    Permalink
    Definition Classes
    AbsSetting
  40. def isSetByUser: Boolean

    Permalink
    Definition Classes
    SettingValue
  41. def isStandard: Boolean

    Permalink
    Definition Classes
    AbsSetting
  42. val name: String

    Permalink
    Definition Classes
    SettingAbsSetting
  43. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

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

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  45. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  46. def postSetHook(): Unit

    Permalink
    Definition Classes
    Setting → SettingValue
  47. def respondsTo(token: String): Boolean

    Permalink
    Definition Classes
    PrefixSettingAbsSetting
  48. var setByUser: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    SettingValue
  49. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  50. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AbsSetting → AnyRef → Any
  51. def tryToSet(args: List[String]): Option[ResultOfTryToSet]

    Permalink

    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.

    Definition Classes
    PrefixSettingAbsSetting
  52. def tryToSetColon(args: List[String]): Option[ResultOfTryToSet]

    Permalink

    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
  53. def tryToSetFromPropertyValue(s: String): Unit

    Permalink

    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. !!! Needs test.

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

    Permalink
    Definition Classes
    PrefixSettingAbsSetting
  55. var v: T

    Permalink
    Attributes
    protected
    Definition Classes
    PrefixSetting → SettingValue
  56. def value: T

    Permalink
    Definition Classes
    SettingValue → AbsSettingValue
  57. def valueSetByUser: Option[T]

    Permalink
    Definition Classes
    SettingValue
  58. def value_=(arg: T): Unit

    Permalink
    Definition Classes
    SettingValue
  59. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  62. def withAbbreviation(s: String): PrefixSetting.this.type

    Permalink

    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
    SettingAbsSetting
  63. def withDeprecationMessage(msg: String): PrefixSetting.this.type

    Permalink
    Definition Classes
    SettingAbsSetting
  64. def withHelpSyntax(s: String): PrefixSetting.this.type

    Permalink
    Definition Classes
    SettingAbsSetting
  65. def withPostSetHook(f: (PrefixSetting.this.type) ⇒ Unit): PrefixSetting.this.type

    Permalink
    Definition Classes
    Setting
  66. def [B](y: B): (PrefixSetting, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from PrefixSetting to ArrowAssoc[PrefixSetting] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def <(that: PrefixSetting): Boolean

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

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

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

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

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

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

Inherited from Setting

Inherited from Mutable

Inherited from math.Ordered[Setting]

Inherited from Comparable[Setting]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion orderingToOrdered from PrefixSetting to math.Ordered[PrefixSetting]

Inherited by implicit conversion any2stringadd from PrefixSetting to any2stringadd[PrefixSetting]

Inherited by implicit conversion StringFormat from PrefixSetting to StringFormat[PrefixSetting]

Inherited by implicit conversion Ensuring from PrefixSetting to Ensuring[PrefixSetting]

Inherited by implicit conversion ArrowAssoc from PrefixSetting to ArrowAssoc[PrefixSetting]

Ungrouped