Packages

final class Course[F[_]] extends AnyRef

Source
Course.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Course
  2. AnyRef
  3. Any
Implicitly
  1. by StringFormat
  2. by Ensuring
  3. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Course(id: String, baseUri: Uri)(implicit arg0: Sync[F], client: Client[F])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ->[B](y: B): (Course[F], B)
    Implicit
    This member is added by an implicit conversion from Course[F] toArrowAssoc[Course[F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def ensuring(cond: (Course[F]) => Boolean, msg: => Any): Course[F]
    Implicit
    This member is added by an implicit conversion from Course[F] toEnsuring[Course[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  8. def ensuring(cond: (Course[F]) => Boolean): Course[F]
    Implicit
    This member is added by an implicit conversion from Course[F] toEnsuring[Course[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: Boolean, msg: => Any): Course[F]
    Implicit
    This member is added by an implicit conversion from Course[F] toEnsuring[Course[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean): Course[F]
    Implicit
    This member is added by an implicit conversion from Course[F] toEnsuring[Course[F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. val evaluations: F[List[Evaluation]]

    An evaluation is a component of a course in which the teacher determines the extent of the students understanding of the program.

    An evaluation is a component of a course in which the teacher determines the extent of the students understanding of the program. Current known implementations of evaluations are: tests, exams, projects, online tests and ad-hoc evaluations.

  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Course[F] toStringFormat[Course[F]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. def get(): F[models.Course]

    A course is a concrete unit of teaching that typically lasts one academic term.

    A course is a concrete unit of teaching that typically lasts one academic term. This endpoint shows some information regarding a particular course. The same course may be lectured simultaneously in multiple degrees during the same academic term. The “competences” field holds curricular information for each set of degrees in which the course is lectured. Usually this information is the same for all the associated degrees.

  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. val groups: F[List[Group]]

    Groups are used in courses for a wide range of purposes.

    Groups are used in courses for a wide range of purposes. The most typical are for creating teams of students for laboratories or projects. Some groups are shared among different courses. The enrolment of student groups may be atomic or individual, and may be restricted to an enrolment period.

  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. val id: String
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. val schedule: F[Schedule]

    Each course is lectured during a specific set of intervals.

    Each course is lectured during a specific set of intervals. These intervals make up the lesson period for that course. Each course also has a curricular load that specifies the time each student will expend with the course. Each shift is the possible schedule in which a student should enrol.

  25. val students: F[AttendingStudents]

    This endpoint lists all the students attending the specified course.

    This endpoint lists all the students attending the specified course. For each student it indicates the corresponding degree. The endpoint also returns the number of students officially enrolled in the course.

  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. val uri: Uri
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def [B](y: B): (Course[F], B)
    Implicit
    This member is added by an implicit conversion from Course[F] toArrowAssoc[Course[F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringFormat fromCourse[F] to StringFormat[Course[F]]

Inherited by implicit conversion Ensuring fromCourse[F] to Ensuring[Course[F]]

Inherited by implicit conversion ArrowAssoc fromCourse[F] to ArrowAssoc[Course[F]]

Ungrouped