Packages

c

scala.tools.nsc.settings

SpecificScalaVersion

case class SpecificScalaVersion(major: Int, minor: Int, rev: Int, build: ScalaBuild) extends ScalaVersion with Product with Serializable

A specific Scala version, not one of the magic min/max versions. An SpecificScalaVersion may or may not be a released version - i.e. this same class is used to represent final, release candidate, milestone, and development builds. The build argument is used to segregate builds

Source
ScalaVersion.scala
Linear Supertypes
java.io.Serializable, Product, Equals, ScalaVersion, math.Ordered[ScalaVersion], Comparable[ScalaVersion], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SpecificScalaVersion
  2. Serializable
  3. Product
  4. Equals
  5. ScalaVersion
  6. Ordered
  7. Comparable
  8. AnyRef
  9. 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

Instance Constructors

  1. new SpecificScalaVersion(major: Int, minor: Int, rev: Int, build: ScalaBuild)

Value Members

  1. def <(that: ScalaVersion): Boolean
    Definition Classes
    Ordered
  2. def <=(that: ScalaVersion): Boolean
    Definition Classes
    Ordered
  3. def >(that: ScalaVersion): Boolean
    Definition Classes
    Ordered
  4. def >=(that: ScalaVersion): Boolean
    Definition Classes
    Ordered
  5. val build: ScalaBuild
  6. def compare(that: ScalaVersion): Int
    Definition Classes
    SpecificScalaVersion → Ordered
  7. def compareTo(that: ScalaVersion): Int
    Definition Classes
    Ordered → Comparable
  8. val major: Int
  9. val minor: Int
  10. def productElementNames: Iterator[String]
    Definition Classes
    Product
  11. val rev: Int
  12. def unparse: String
    Definition Classes
    SpecificScalaVersionScalaVersion

Shadowed Implicit Value Members

  1. def <(that: SpecificScalaVersion): Boolean
    Implicit
    This member is added by an implicit conversion from SpecificScalaVersion tomath.Ordered[SpecificScalaVersion] performed by method orderingToOrdered in scala.math.Ordered.
    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:
    (specificScalaVersion: math.Ordered[SpecificScalaVersion]).<(that)
    Definition Classes
    Ordered
  2. def <=(that: SpecificScalaVersion): Boolean
    Implicit
    This member is added by an implicit conversion from SpecificScalaVersion tomath.Ordered[SpecificScalaVersion] performed by method orderingToOrdered in scala.math.Ordered.
    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:
    (specificScalaVersion: math.Ordered[SpecificScalaVersion]).<=(that)
    Definition Classes
    Ordered
  3. def >(that: SpecificScalaVersion): Boolean
    Implicit
    This member is added by an implicit conversion from SpecificScalaVersion tomath.Ordered[SpecificScalaVersion] performed by method orderingToOrdered in scala.math.Ordered.
    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:
    (specificScalaVersion: math.Ordered[SpecificScalaVersion]).>(that)
    Definition Classes
    Ordered
  4. def >=(that: SpecificScalaVersion): Boolean
    Implicit
    This member is added by an implicit conversion from SpecificScalaVersion tomath.Ordered[SpecificScalaVersion] performed by method orderingToOrdered in scala.math.Ordered.
    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:
    (specificScalaVersion: math.Ordered[SpecificScalaVersion]).>=(that)
    Definition Classes
    Ordered
  5. def compare(that: SpecificScalaVersion): Int
    Implicit
    This member is added by an implicit conversion from SpecificScalaVersion tomath.Ordered[SpecificScalaVersion] performed by method orderingToOrdered in scala.math.Ordered.
    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:
    (specificScalaVersion: math.Ordered[SpecificScalaVersion]).compare(that)
    Definition Classes
    Ordered
  6. def compareTo(that: SpecificScalaVersion): Int
    Implicit
    This member is added by an implicit conversion from SpecificScalaVersion tomath.Ordered[SpecificScalaVersion] performed by method orderingToOrdered in scala.math.Ordered.
    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:
    (specificScalaVersion: math.Ordered[SpecificScalaVersion]).compareTo(that)
    Definition Classes
    Ordered → Comparable