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
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- SpecificScalaVersion
- Serializable
- Product
- Equals
- ScalaVersion
- Ordered
- Comparable
- AnyRef
- Any
Implicitly
- by orderingToOrdered
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new SpecificScalaVersion(major: Int, minor: Int, rev: Int, build: ScalaBuild)
Value Members
- def <(that: ScalaVersion): Boolean
- Definition Classes
- Ordered
- def <=(that: ScalaVersion): Boolean
- Definition Classes
- Ordered
- def >(that: ScalaVersion): Boolean
- Definition Classes
- Ordered
- def >=(that: ScalaVersion): Boolean
- Definition Classes
- Ordered
- val build: ScalaBuild
- def compare(that: ScalaVersion): Int
- Definition Classes
- SpecificScalaVersion → Ordered
- def compareTo(that: ScalaVersion): Int
- Definition Classes
- Ordered → Comparable
- val major: Int
- val minor: Int
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val rev: Int
- def unparse: String
- Definition Classes
- SpecificScalaVersion → ScalaVersion
Shadowed Implicit Value Members
- 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
- 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
- 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
- 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
- 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
- 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
The Scala compiler and reflection APIs.