Packages

class Club extends AnyRef

The class Club represents football clubs in a match statistics system. Only some very basic information for each club is recorded. A club object is immutable once created.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Club
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Club(name: String, abbreviation: String, stadium: String)

    name

    the name of the club

    stadium

    the name of the home stadium of the club

Value Members

  1. val abbreviation: String
  2. val name: String
  3. val stadium: String
  4. def toString: String

    Produces a textual description of the club (which consists of just the club's name).

    Produces a textual description of the club (which consists of just the club's name).

    Definition Classes
    Club → AnyRef → Any